From: Tim Rozet Date: Fri, 2 Nov 2018 14:36:19 +0000 (-0400) Subject: Fix rocky container preparation X-Git-Tag: opnfv-8.0.0~26 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=1486696939e9b8d42f6f96bc5adb85849f675413;p=apex.git Fix rocky container preparation Branch was being passed with the 'stable' prefix which was breaking the docker URL. Change-Id: I802492d407bc18ec2b47212edfe4bb4fde13002a Signed-off-by: Tim Rozet --- diff --git a/apex/deploy.py b/apex/deploy.py index f1ab260f..8330dc80 100644 --- a/apex/deploy.py +++ b/apex/deploy.py @@ -421,7 +421,7 @@ def main(): os.path.join(APEX_TEMP_DIR, docker_env)) c_builder.prepare_container_images( os.path.join(APEX_TEMP_DIR, docker_env), - branch=branch, + branch=branch.replace('stable/', ''), neutron_driver=c_builder.get_neutron_driver(ds_opts) ) # Install Undercloud