summaryrefslogtreecommitdiffstats
path: root/container
diff options
context:
space:
mode:
authorDan Mick <dan.mick@redhat.com>2024-11-20 01:40:05 +0100
committerDan Mick <dan.mick@redhat.com>2024-12-03 21:32:13 +0100
commita3a9f188cabf714de2c39e310bccbe848ed66671 (patch)
treea25d178008fb7a0ba0813a82efb53dcc4a9579f5 /container
parentcontainers/make-manifest.py: Add --promote (diff)
downloadceph-a3a9f188cabf714de2c39e310bccbe848ed66671.tar.xz
ceph-a3a9f188cabf714de2c39e310bccbe848ed66671.zip
container/make-manifest-list.py: use LOCALMANIFEST throughout
Signed-off-by: Dan Mick <dan.mick@redhat.com>
Diffstat (limited to 'container')
-rwxr-xr-xcontainer/make-manifest-list.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/container/make-manifest-list.py b/container/make-manifest-list.py
index b12598e0b6a..27b00cc4777 100755
--- a/container/make-manifest-list.py
+++ b/container/make-manifest-list.py
@@ -186,8 +186,8 @@ def build_prerelease(sysargs):
# create manifest list image with the standard list of tags
# ignore failure on manifest rm
- run_command(f'podman manifest rm localhost/m')
- run_command_show_failure(f'podman manifest create localhost/m')
+ run_command(f'podman manifest rm {LOCALMANIFEST}')
+ run_command_show_failure(f'podman manifest create {LOCALMANIFEST}')
for p in paths_with_tags:
run_command_show_failure(f'podman manifest add m {p}')
base = f'{manifest_host}/{manifest_repo}'
@@ -201,7 +201,7 @@ def build_prerelease(sysargs):
print(f'skipping podman manifest push {LOCALMANIFEST} {base}:{t}')
else:
run_command_show_failure(
- f'podman manifest push localhost/m {base}:{t}')
+ f'podman manifest push {LOCALMANIFEST} {base}:{t}')
def promote(sysargs):
manifest_host = os.environ.get('MANIFEST_HOST', 'quay.ceph.io')