Skip to content
This repository was archived by the owner on Dec 1, 2018. It is now read-only.

Commit 41d1a0e

Browse files
authored
Merge pull request #1919 from thockin-tmp/gcr-vanity
Convert registry to k8s.gcr.io
2 parents 32a110d + 251e29e commit 41d1a0e

File tree

12 files changed

+17
-17
lines changed

12 files changed

+17
-17
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
all: build
22

3-
PREFIX?=gcr.io/google_containers
3+
PREFIX?=k8s.gcr.io
44
FLAGS=
55
ARCH?=amd64
66
ALL_ARCHITECTURES=amd64 arm arm64 ppc64le s390x

deploy/kube-config/google/heapster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
serviceAccountName: heapster
2121
containers:
2222
- name: heapster
23-
image: gcr.io/google_containers/heapster-amd64:v1.4.2
23+
image: k8s.gcr.io/heapster-amd64:v1.4.2
2424
imagePullPolicy: IfNotPresent
2525
command:
2626
- /heapster

deploy/kube-config/influxdb/grafana.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: grafana
16-
image: gcr.io/google_containers/heapster-grafana-amd64:v4.4.3
16+
image: k8s.gcr.io/heapster-grafana-amd64:v4.4.3
1717
ports:
1818
- containerPort: 3000
1919
protocol: TCP

deploy/kube-config/influxdb/heapster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
serviceAccountName: heapster
2121
containers:
2222
- name: heapster
23-
image: gcr.io/google_containers/heapster-amd64:v1.4.2
23+
image: k8s.gcr.io/heapster-amd64:v1.4.2
2424
imagePullPolicy: IfNotPresent
2525
command:
2626
- /heapster

deploy/kube-config/influxdb/influxdb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: influxdb
16-
image: gcr.io/google_containers/heapster-influxdb-amd64:v1.3.3
16+
image: k8s.gcr.io/heapster-influxdb-amd64:v1.3.3
1717
volumeMounts:
1818
- mountPath: /data
1919
name: influxdb-storage

deploy/kube-config/standalone-test/heapster-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: heapster-test
20-
image: gcr.io/google_containers/heapster-amd64:v1.4.2
20+
image: k8s.gcr.io/heapster-amd64:v1.4.2
2121
imagePullPolicy: Always
2222
command:
2323
- /heapster

deploy/kube-config/standalone-test/heapster-summary-controller.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: heapster-test
20-
image: gcr.io/google_containers/heapster-amd64:v1.4.2
20+
image: k8s.gcr.io/heapster-amd64:v1.4.2
2121
imagePullPolicy: Always
2222
command:
2323
- /heapster
@@ -28,7 +28,7 @@ spec:
2828
mountPath: /etc/ssl/certs
2929
readOnly: true
3030
- name: eventer-test
31-
image: gcr.io/google_containers/heapster-amd64:v1.4.2
31+
image: k8s.gcr.io/heapster-amd64:v1.4.2
3232
imagePullPolicy: Always
3333
command:
3434
- /eventer

deploy/kube-config/standalone-with-apiserver/heapster-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ spec:
2323
spec:
2424
containers:
2525
- name: heapster
26-
image: gcr.io/google_containers/heapster-amd64:v1.4.2
26+
image: k8s.gcr.io/heapster-amd64:v1.4.2
2727
command:
2828
- /heapster
2929
- --source=kubernetes.summary_api:''

deploy/kube-config/standalone/heapster-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
serviceAccountName: heapster
2121
containers:
2222
- name: heapster
23-
image: gcr.io/google_containers/heapster-amd64:v1.4.2
23+
image: k8s.gcr.io/heapster-amd64:v1.4.2
2424
imagePullPolicy: IfNotPresent
2525
command:
2626
- /heapster

grafana/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
# Build the influxdb image for amd64, arm, arm64, ppc64le and s390x
1616
#
1717
# Usage:
18-
# [PREFIX=gcr.io/google_containers] [ARCH=amd64] make (build|push)
18+
# [PREFIX=k8s.gcr.io] [ARCH=amd64] make (build|push)
1919

2020
all: build
2121

2222
VERSION?=v4.4.3
2323
DEB_VERSION?=4.4.3
2424

25-
PREFIX?=gcr.io/google_containers
25+
PREFIX?=k8s.gcr.io
2626
ARCH?=amd64
2727
TEMP_DIR:=$(shell mktemp -d)
2828
LDFLAGS=-w -X main.version=$(VERSION) -X main.commit=unknown-dev -X main.timestamp=0 -extldflags '-static'
29-
KUBE_CROSS_IMAGE=gcr.io/google_containers/kube-cross:v1.8.3-2
29+
KUBE_CROSS_IMAGE=k8s.gcr.io/kube-cross:v1.8.3-2
3030

3131
ALL_ARCHITECTURES=amd64 arm arm64 ppc64le s390x
3232
ML_PLATFORMS=linux/amd64,linux/arm,linux/arm64,linux/ppc64le,linux/s390x

0 commit comments

Comments
 (0)