Skip to content

Commit 547c65e

Browse files
committed
Convert registry to k8s.gcr.io
1 parent ec470b6 commit 547c65e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ VERSION:=$(shell git describe --tags --dirty)
2525
TAG?=$(VERSION)
2626

2727
# PROJ is the image project.
28-
PROJ?=gcr.io/google_containers
28+
PROJ?=k8s.gcr.io
2929

3030
# UPLOAD_PATH is the cloud storage path to upload release tar.
3131
UPLOAD_PATH?=gs://kubernetes-release

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Run `make` in the top directory. It will:
8787

8888
## Push Image
8989
`make push` uploads the docker image to registry. By default, the image will be uploaded to
90-
`gcr.io/google_containers`. It's easy to modify the `Makefile` to push the image
90+
`k8s.gcr.io`. It's easy to modify the `Makefile` to push the image
9191
to another registry.
9292

9393
## Start DaemonSet
@@ -102,7 +102,7 @@ spec:
102102
spec:
103103
containers:
104104
- name: node-problem-detector
105-
image: gcr.io/google_containers/node-problem-detector:v0.2
105+
image: k8s.gcr.io/node-problem-detector:v0.2
106106
imagePullPolicy: Always
107107
securityContext:
108108
privileged: true

node-problem-detector.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
- /node-problem-detector
1515
- --logtostderr
1616
- --kernel-monitor=/config/kernel-monitor.json
17-
image: gcr.io/google_containers/node-problem-detector:v0.2
17+
image: k8s.gcr.io/node-problem-detector:v0.2
1818
imagePullPolicy: Always
1919
securityContext:
2020
privileged: true

pkg/util/nethealth/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# Makefile for the Docker image gcr.io/google_containers/kube-nethealth-<ARCH>
15+
# Makefile for the Docker image k8s.gcr.io/kube-nethealth-<ARCH>
1616
# MAINTAINER: Girish kalele <[email protected]>
1717
# If you update this image please bump the tag value before pushing.
1818
#
1919
# Usage:
20-
# [TAG=1.0] [REGISTRY=gcr.io/google_containers] make push
20+
# [TAG=1.0] [REGISTRY=k8s.gcr.io] make push
2121

2222
# Default registry, arch and tag. This can be overwritten by arguments to make
2323
TAG?=1.0
24-
REGISTRY?=gcr.io/google_containers
24+
REGISTRY?=k8s.gcr.io
2525
ARCH?=amd64
2626

2727
all: build
@@ -33,7 +33,7 @@ build: nethealth
3333
docker build -t $(REGISTRY)/kube-nethealth-$(ARCH):$(TAG) .
3434

3535
push: build
36-
ifeq ($(REGISTRY),gcr.io/google_containers)
36+
ifeq ($(REGISTRY),k8s.gcr.io)
3737
gcloud docker push $(REGISTRY)/kube-nethealth-$(ARCH):$(TAG)
3838
else
3939
docker push $(REGISTRY)/kube-nethealth-$(ARCH):$(TAG)

test/kernel_log_generator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
.PHONY: all build push
1818

19-
PROJ ?= gcr.io/google_containers
19+
PROJ ?= k8s.gcr.io
2020
TAG := 0.1
2121

2222
all: push

0 commit comments

Comments
 (0)