diff options
author | Tim Rozet <trozet@redhat.com> | 2018-11-02 10:36:19 -0400 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2018-11-02 10:36:19 -0400 |
commit | 1486696939e9b8d42f6f96bc5adb85849f675413 (patch) | |
tree | 16415c59171453b4b93294ad3e21c60ea841c183 | |
parent | be1a60fcde0c122266e8c074df729a1be75f5607 (diff) |
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 <trozet@redhat.com>
-rw-r--r-- | apex/deploy.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |