File tree Expand file tree Collapse file tree 7 files changed +17
-17
lines changed Expand file tree Collapse file tree 7 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ readonly KUBE_BUILD_IMAGE_REPO=kube-build
43
43
readonly KUBE_BUILD_IMAGE_CROSS_TAG=" $( cat " ${KUBE_ROOT} /build/build-image/cross/VERSION" ) "
44
44
45
45
readonly KUBE_DOCKER_REGISTRY=" ${KUBE_DOCKER_REGISTRY:- k8s.gcr.io} "
46
- readonly KUBE_BASE_IMAGE_REGISTRY=" ${KUBE_BASE_IMAGE_REGISTRY:- k8s .gcr.io} "
46
+ readonly KUBE_BASE_IMAGE_REGISTRY=" ${KUBE_BASE_IMAGE_REGISTRY:- us .gcr.io/ k8s-artifacts-prod / build-image } "
47
47
48
48
# This version number is used to cause everyone to rebuild their data containers
49
49
# and build image. This is especially useful for automated build systems like
Original file line number Diff line number Diff line change 14
14
15
15
all : all-build
16
16
17
- REGISTRY ?= staging-k8s. gcr.io
17
+ REGISTRY ?= gcr.io/k8s-staging-build-image
18
18
IMAGE ?= $(REGISTRY ) /debian-base
19
19
BUILD_IMAGE ?= debian-build
20
20
Original file line number Diff line number Diff line change 14
14
15
15
.PHONY : build push all all-build all-push-images all-push push-manifest
16
16
17
- REGISTRY? ="staging-k8s. gcr.io"
17
+ REGISTRY? ="gcr.io/k8s-staging-build-image "
18
18
IMAGE =$(REGISTRY ) /debian-iptables
19
19
TAG? =v12.0.1
20
20
ARCH? =amd64
21
21
ALL_ARCH = amd64 arm arm64 ppc64le s390x
22
22
TEMP_DIR: =$(shell mktemp -d)
23
23
24
- BASE_REGISTRY? =k8s .gcr.io
24
+ BASE_REGISTRY? =us .gcr.io/k8s-artifacts-prod/build-image
25
25
BASEIMAGE? =$(BASE_REGISTRY ) /debian-base-$(ARCH ) :v2.0.0
26
26
27
27
# This option is for running docker manifest command
Original file line number Diff line number Diff line change @@ -91,17 +91,17 @@ dependencies:
91
91
- path : build/debian-iptables/Makefile
92
92
match : BASEIMAGE\?\=\$\(BASE_REGISTRY\)\/debian-base-\$\(ARCH\)
93
93
- path : cluster/images/etcd/Makefile
94
- match : BASEIMAGE\?\=k8s \.gcr\.io\/debian-base:v\d+\.\d+\.\d+
94
+ match : BASEIMAGE\?\=us \.gcr\.io\/k8s-artifacts-prod\/build-image \/debian-base:v\d+\.\d+\.\d+
95
95
- path : cluster/images/etcd/Makefile
96
- match : BASEIMAGE\?\=k8s \.gcr\.io\/debian-base-arm:v\d+\.\d+\.\d+
96
+ match : BASEIMAGE\?\=us \.gcr\.io\/k8s-artifacts-prod\/build-image \/debian-base-arm:v\d+\.\d+\.\d+
97
97
- path : cluster/images/etcd/Makefile
98
- match : BASEIMAGE\?\=k8s \.gcr\.io\/debian-base-arm64:v\d+\.\d+\.\d+
98
+ match : BASEIMAGE\?\=us \.gcr\.io\/k8s-artifacts-prod\/build-image \/debian-base-arm64:v\d+\.\d+\.\d+
99
99
- path : cluster/images/etcd/Makefile
100
- match : BASEIMAGE\?\=k8s \.gcr\.io\/debian-base-ppc64le:v\d+\.\d+\.\d+
100
+ match : BASEIMAGE\?\=us \.gcr\.io\/k8s-artifacts-prod\/build-image \/debian-base-ppc64le:v\d+\.\d+\.\d+
101
101
- path : cluster/images/etcd/Makefile
102
- match : BASEIMAGE\?\=k8s \.gcr\.io\/debian-base-s390x:v\d+\.\d+\.\d+
102
+ match : BASEIMAGE\?\=us \.gcr\.io\/k8s-artifacts-prod\/build-image \/debian-base-s390x:v\d+\.\d+\.\d+
103
103
- path : cluster/images/etcd-empty-dir-cleanup/Dockerfile
104
- match : k8s .gcr.io\/debian-base:v\d+\.\d+\.\d+
104
+ match : us\ .gcr\ .io\/k8s-artifacts-prod\/build-image \/debian-base:v\d+\.\d+\.\d+
105
105
106
106
- name : " k8s.gcr.io/debian-iptables"
107
107
version : 12.0.1
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ def debian_image_dependencies():
102
102
name = "debian-base-" + arch ,
103
103
architecture = arch ,
104
104
digest = _digest (_DEBIAN_BASE_DIGEST , arch ),
105
- registry = "k8s .gcr.io" ,
105
+ registry = "us .gcr.io/k8s-artifacts-prod/build-image " ,
106
106
repository = "debian-base" ,
107
107
tag = "v2.0.0" , # ignored, but kept here for documentation
108
108
)
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM k8s .gcr.io/debian-base:v2.0.0
15
+ FROM us .gcr.io/k8s-artifacts-prod/build-image /debian-base:v2.0.0
16
16
17
17
COPY etcdctl etcd-empty-dir-cleanup.sh /
18
18
RUN chmod a+rx /etcdctl /etcd-empty-dir-cleanup.sh
Original file line number Diff line number Diff line change @@ -67,19 +67,19 @@ GOARM?=7
67
67
TEMP_DIR: =$(shell mktemp -d)
68
68
69
69
ifeq ($(ARCH ) ,amd64)
70
- BASEIMAGE? =k8s .gcr.io/debian-base:v2.0.0
70
+ BASEIMAGE? =us .gcr.io/k8s-artifacts-prod/build-image /debian-base:v2.0.0
71
71
endif
72
72
ifeq ($(ARCH ) ,arm)
73
- BASEIMAGE? =k8s .gcr.io/debian-base-arm:v2.0.0
73
+ BASEIMAGE? =us .gcr.io/k8s-artifacts-prod/build-image /debian-base-arm:v2.0.0
74
74
endif
75
75
ifeq ($(ARCH ) ,arm64)
76
- BASEIMAGE? =k8s .gcr.io/debian-base-arm64:v2.0.0
76
+ BASEIMAGE? =us .gcr.io/k8s-artifacts-prod/build-image /debian-base-arm64:v2.0.0
77
77
endif
78
78
ifeq ($(ARCH ) ,ppc64le)
79
- BASEIMAGE? =k8s .gcr.io/debian-base-ppc64le:v2.0.0
79
+ BASEIMAGE? =us .gcr.io/k8s-artifacts-prod/build-image /debian-base-ppc64le:v2.0.0
80
80
endif
81
81
ifeq ($(ARCH ) ,s390x)
82
- BASEIMAGE? =k8s .gcr.io/debian-base-s390x:v2.0.0
82
+ BASEIMAGE? =us .gcr.io/k8s-artifacts-prod/build-image /debian-base-s390x:v2.0.0
83
83
endif
84
84
85
85
build :
You can’t perform that action at this time.
0 commit comments