Commit f786d92b authored by Jaroslava Fiedlerova's avatar Jaroslava Fiedlerova

CI: Allow restart of the container if it fails on the first attempt

In CI we sometimes encouter fail of the gNB/UE deployment (and fail of
the pipeline) caused by unsuccsessful initialization of the USRP N310.
Restart the container if the health check fails during initialization.

Introduce a configurable parameter (from XML) to set max number of
attempts for the container deployment.

Store logs from failed deployment attempts.
parent f078e6f9
...@@ -337,6 +337,7 @@ class Containerize(): ...@@ -337,6 +337,7 @@ class Containerize():
self.imageToCopy = '' self.imageToCopy = ''
#checkers from xml #checkers from xml
self.ran_checkers={} self.ran_checkers={}
self.num_attempts = 1
self.flexricTag = '' self.flexricTag = ''
...@@ -844,50 +845,55 @@ class Containerize(): ...@@ -844,50 +845,55 @@ class Containerize():
def DeployObject(self, HTML): def DeployObject(self, HTML):
svr = self.eNB_serverId[self.eNB_instance] svr = self.eNB_serverId[self.eNB_instance]
num_attempts = self.num_attempts
lIpAddr, lSourcePath = self.GetCredentials(svr) lIpAddr, lSourcePath = self.GetCredentials(svr)
logging.debug('\u001B[1m Deploying OAI Object on server: ' + lIpAddr + '\u001B[0m') logging.debug(f'Deploying OAI Object on server: {lIpAddr}')
yaml = self.yamlPath[self.eNB_instance].strip('/') yaml = self.yamlPath[self.eNB_instance].strip('/')
# creating the log folder by default # creating the log folder by default
local_dir = f"{os.getcwd()}/../cmake_targets/log/{yaml.split('/')[-1]}" local_dir = f"{os.getcwd()}/../cmake_targets/log/{yaml.split('/')[-1]}"
os.system(f'mkdir -p {local_dir}') os.system(f'mkdir -p {local_dir}')
wd = f'{lSourcePath}/{yaml}' wd = f'{lSourcePath}/{yaml}'
wd_yaml = f'{wd}/docker-compose.y*ml'
yaml_dir = yaml.split('/')[-1]
with cls_cmd.getConnection(lIpAddr) as ssh: with cls_cmd.getConnection(lIpAddr) as ssh:
services = GetServices(ssh, self.services[self.eNB_instance], f"{wd}/docker-compose.y*ml") services = GetServices(ssh, self.services[self.eNB_instance], wd_yaml)
if services == [] or services == ' ' or services == None: if services == [] or services == ' ' or services == None:
msg = "Cannot determine services to start" msg = 'Cannot determine services to start'
logging.error(msg) logging.error(msg)
HTML.CreateHtmlTestRowQueue('N/A', 'KO', [msg]) HTML.CreateHtmlTestRowQueue('N/A', 'KO', [msg])
return False return False
ExistEnvFilePrint(ssh, wd) ExistEnvFilePrint(ssh, wd)
WriteEnvFile(ssh, services, wd, self.deploymentTag, self.flexricTag) WriteEnvFile(ssh, services, wd, self.deploymentTag, self.flexricTag)
if num_attempts <= 0:
logging.info(f"will start services {services}") raise ValueError(f'Invalid value for num_attempts: {num_attempts}, must be greater than 0')
status = ssh.run(f'docker compose -f {wd}/docker-compose.y*ml up -d -- {services}') for attempt in range(num_attempts):
if status.returncode != 0: imagesInfo = []
msg = f"cannot deploy services {services}: {status.stdout}" healthInfo = []
logging.error(msg) logging.info(f'will start services {services}')
HTML.CreateHtmlTestRowQueue('N/A', 'KO', [msg]) status = ssh.run(f'docker compose -f {wd_yaml} up -d -- {services}')
return False if status.returncode != 0:
msg = f'cannot deploy services {services}: {status.stdout}'
imagesInfo = [] logging.error(msg)
fstatus = True HTML.CreateHtmlTestRowQueue('N/A', 'NOK', [msg])
for svc in services.split(): return False
containerName = GetContainerName(ssh, svc, f"{wd}/docker-compose.y*ml") for svc in services.split():
healthy = GetContainerHealth(ssh, containerName) health, msg = GetServiceHealth(ssh, svc, f'{wd_yaml}')
if not healthy: logging.info(msg)
imagesInfo += [f"Failed to deploy: service {svc}"] imagesInfo.append(msg)
fstatus = False healthInfo.append(health)
else: deployed = all(healthInfo)
image = GetImageName(ssh, svc, f"{wd}/docker-compose.y*ml") if deployed:
logging.info(f"service {svc} healthy, container {containerName}, image {image}") break
imagesInfo += [f"service {svc} healthy, image {image}"] elif (attempt < num_attempts - 1):
if fstatus: logging.warning(f'Failed to deploy on attempt {attempt}, restart services {services}')
for svc in services.split():
CopyinServiceLog(ssh, lSourcePath, yaml_dir, svc, wd_yaml, f'{svc}-{HTML.testCase_id}-attempt{attempt}.log')
ssh.run(f'docker compose -f {wd_yaml} down -- {services}')
if deployed:
HTML.CreateHtmlTestRowQueue('N/A', 'OK', ['\n'.join(imagesInfo)]) HTML.CreateHtmlTestRowQueue('N/A', 'OK', ['\n'.join(imagesInfo)])
else: else:
HTML.CreateHtmlTestRowQueue('N/A', 'KO', ['\n'.join(imagesInfo)]) HTML.CreateHtmlTestRowQueue('N/A', 'KO', ['\n'.join(imagesInfo)])
return fstatus return deployed
def UndeployObject(self, HTML, RAN): def UndeployObject(self, HTML, RAN):
svr = self.eNB_serverId[self.eNB_instance] svr = self.eNB_serverId[self.eNB_instance]
......
...@@ -349,6 +349,7 @@ def ExecuteActionWithParam(action): ...@@ -349,6 +349,7 @@ def ExecuteActionWithParam(action):
string_field = test.findtext('services') string_field = test.findtext('services')
if string_field is not None: if string_field is not None:
CONTAINERS.services[CONTAINERS.eNB_instance] = string_field CONTAINERS.services[CONTAINERS.eNB_instance] = string_field
CONTAINERS.num_attempts = int(test.findtext('num_attempts') or 1)
CONTAINERS.deploymentTag = cls_containerize.CreateTag(CONTAINERS.ranCommitID, CONTAINERS.ranBranch, CONTAINERS.ranAllowMerge) CONTAINERS.deploymentTag = cls_containerize.CreateTag(CONTAINERS.ranCommitID, CONTAINERS.ranBranch, CONTAINERS.ranAllowMerge)
if action == 'Deploy_Object': if action == 'Deploy_Object':
success = CONTAINERS.DeployObject(HTML) success = CONTAINERS.DeployObject(HTML)
......
...@@ -47,6 +47,7 @@ class TestDeploymentMethods(unittest.TestCase): ...@@ -47,6 +47,7 @@ class TestDeploymentMethods(unittest.TestCase):
self.cont.eNBUserName = None self.cont.eNBUserName = None
self.cont.eNBPassword = None self.cont.eNBPassword = None
self.cont.eNBSourceCodePath = os.getcwd() self.cont.eNBSourceCodePath = os.getcwd()
self.cont.num_attempts = 3
def test_deploy(self): def test_deploy(self):
self.cont.yamlPath[0] = 'tests/simple-dep/' self.cont.yamlPath[0] = 'tests/simple-dep/'
......
...@@ -89,6 +89,7 @@ ...@@ -89,6 +89,7 @@
<yaml_path>ci-scripts/yaml_files/5g_sa_n310_2x2_100MHz</yaml_path> <yaml_path>ci-scripts/yaml_files/5g_sa_n310_2x2_100MHz</yaml_path>
<eNB_instance>0</eNB_instance> <eNB_instance>0</eNB_instance>
<eNB_serverId>0</eNB_serverId> <eNB_serverId>0</eNB_serverId>
<num_attempts>3</num_attempts>
</testCase> </testCase>
<testCase id="000001"> <testCase id="000001">
......
...@@ -89,6 +89,7 @@ ...@@ -89,6 +89,7 @@
<yaml_path>ci-scripts/yaml_files/5g_sa_n310_2x2_60MHz</yaml_path> <yaml_path>ci-scripts/yaml_files/5g_sa_n310_2x2_60MHz</yaml_path>
<eNB_instance>0</eNB_instance> <eNB_instance>0</eNB_instance>
<eNB_serverId>0</eNB_serverId> <eNB_serverId>0</eNB_serverId>
<num_attempts>3</num_attempts>
</testCase> </testCase>
<testCase id="000001"> <testCase id="000001">
......
...@@ -89,6 +89,7 @@ ...@@ -89,6 +89,7 @@
<yaml_path>ci-scripts/yaml_files/5g_sa_n310_4x4_60MHz</yaml_path> <yaml_path>ci-scripts/yaml_files/5g_sa_n310_4x4_60MHz</yaml_path>
<eNB_instance>0</eNB_instance> <eNB_instance>0</eNB_instance>
<eNB_serverId>0</eNB_serverId> <eNB_serverId>0</eNB_serverId>
<num_attempts>3</num_attempts>
</testCase> </testCase>
<testCase id="000001"> <testCase id="000001">
......
...@@ -80,6 +80,7 @@ ...@@ -80,6 +80,7 @@
<yaml_path>ci-scripts/yaml_files/5g_sa_n310_gnb</yaml_path> <yaml_path>ci-scripts/yaml_files/5g_sa_n310_gnb</yaml_path>
<eNB_instance>0</eNB_instance> <eNB_instance>0</eNB_instance>
<eNB_serverId>0</eNB_serverId> <eNB_serverId>0</eNB_serverId>
<num_attempts>3</num_attempts>
</testCase> </testCase>
<testCase id="800814"> <testCase id="800814">
<class>Create_Workspace</class> <class>Create_Workspace</class>
...@@ -93,6 +94,7 @@ ...@@ -93,6 +94,7 @@
<yaml_path>ci-scripts/yaml_files/5g_sa_n310_nrue</yaml_path> <yaml_path>ci-scripts/yaml_files/5g_sa_n310_nrue</yaml_path>
<eNB_instance>1</eNB_instance> <eNB_instance>1</eNB_instance>
<eNB_serverId>1</eNB_serverId> <eNB_serverId>1</eNB_serverId>
<num_attempts>3</num_attempts>
</testCase> </testCase>
<testCase id="000001"> <testCase id="000001">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment