Skip to content

Commit 1169505

Browse files
committed
FAB-15126 Disable latest multiarch tag
This patchset updates multiarch script to disable "latest" multiarch tag. Change-Id: I5206091bb0630fc7536ec62383e3f5f1cc62bfac Signed-off-by: rameshthoomu <[email protected]>
1 parent 3ccb692 commit 1169505

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/multiarch.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ for image in ${IMAGES}; do
6262
manifest-tool --username ${USER} --password ${PASSWORD} push from-args\
6363
--platforms linux/amd64 --template "${NS}/${image}:ARCH-${VERSION}"\
6464
--target "${NS}/${image}:${VERSION}"
65-
manifest-tool --username ${USER} --password ${PASSWORD} push from-args\
66-
--platforms linux/amd64 --template "${NS}/${image}:ARCH-${VERSION}"\
67-
--target "${NS}/${image}:latest"
65+
# manifest-tool --username ${USER} --password ${PASSWORD} push from-args\
66+
# --platforms linux/amd64 --template "${NS}/${image}:ARCH-${VERSION}"\
67+
# --target "${NS}/${image}:latest"
6868
manifest-tool --username ${USER} --password ${PASSWORD} push from-args\
6969
--platforms linux/amd64 --template "${NS}/${image}:ARCH-${VERSION}"\
7070
--target "${NS}/${image}:${TWO_DIGIT_VERSION}"
@@ -74,7 +74,7 @@ done
7474
for image in ${IMAGES}; do
7575
docker pull ${NS}/${image}:${VERSION} || failed
7676
docker pull ${NS}/${image}:${TWO_DIGIT_VERSION} || failed
77-
docker pull ${NS}/${image}:latest || failed
77+
# docker pull ${NS}/${image}:latest || failed
7878
done
7979

8080
echo "Successfully pushed multiarch manifest"

0 commit comments

Comments
 (0)