File tree 3 files changed +8
-6
lines changed
3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ sub-push: all-image-registry push-manifest
194
194
195
195
.PHONY : sub-push-fips
196
196
sub-push-fips :
197
- $(MAKE ) FIPS=true TAG= $( TAG ) -fips sub-push
197
+ $(MAKE ) FIPS=true sub-push
198
198
199
199
.PHONY : sub-push-a1compat
200
200
sub-push-a1compat :
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ function build_and_push() {
64
64
export ALL_OS=" linux"
65
65
export ALL_ARCH_linux=" ${IMAGE_ARCH} "
66
66
fi
67
- make -j $( nproc) sub -push
67
+ make -j $( nproc) all -push
68
68
69
69
loudecho " Image pushed to ${IMAGE_NAME} :${IMAGE_TAG} "
70
70
}
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
1
3
# Copyright 2025 The Kubernetes Authors.
2
4
#
3
5
# Licensed under the Apache License, Version 2.0 (the 'License');
@@ -34,10 +36,10 @@ function build_and_push() {
34
36
MAX_IMAGES=10000
35
37
IMAGE_COUNT=$( aws ecr list-images --repository-name " ${IMAGE##*/ } " --region " ${REGION} " --query ' length(imageIds[])' )
36
38
37
- if [ $IMAGE_COUNT -ge $MAX_IMAGES ]; then
38
- loudecho " Repository image limit reached. Unable to push new images."
39
- exit 1
40
- fi
39
+ # if [ $IMAGE_COUNT -ge $MAX_IMAGES ]; then
40
+ # loudecho "Repository image limit reached. Unable to push new images."
41
+ # exit 1
42
+ # fi
41
43
42
44
loudecho " Building and pushing test driver images to ${IMAGE} :${IMAGE_TAG} "
43
45
aws ecr get-login-password --region " ${REGION} " | docker login --username AWS --password-stdin " ${AWS_ACCOUNT_ID} .dkr.ecr.${REGION} .amazonaws.com"
You can’t perform that action at this time.
0 commit comments