File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
test/kernel_log_generator Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ VERSION:=$(shell git describe --tags --dirty)
25
25
TAG? =$(VERSION )
26
26
27
27
# PROJ is the image project.
28
- PROJ? =gcr.io/google_containers
28
+ PROJ? =k8s. gcr.io
29
29
30
30
# UPLOAD_PATH is the cloud storage path to upload release tar.
31
31
UPLOAD_PATH? =gs://kubernetes-release
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ Run `make` in the top directory. It will:
87
87
88
88
## Push Image
89
89
` 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
91
91
to another registry.
92
92
93
93
## Start DaemonSet
@@ -102,7 +102,7 @@ spec:
102
102
spec :
103
103
containers :
104
104
- 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
106
106
imagePullPolicy : Always
107
107
securityContext :
108
108
privileged : true
Original file line number Diff line number Diff line change 14
14
- /node-problem-detector
15
15
- --logtostderr
16
16
- --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
18
18
imagePullPolicy : Always
19
19
securityContext :
20
20
privileged : true
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
- # Makefile for the Docker image gcr.io/google_containers /kube-nethealth-<ARCH>
15
+ # Makefile for the Docker image k8s. gcr.io/kube-nethealth-<ARCH>
16
16
# MAINTAINER: Girish kalele <[email protected] >
17
17
# If you update this image please bump the tag value before pushing.
18
18
#
19
19
# Usage:
20
- # [TAG=1.0] [REGISTRY=gcr.io/google_containers ] make push
20
+ # [TAG=1.0] [REGISTRY=k8s. gcr.io] make push
21
21
22
22
# Default registry, arch and tag. This can be overwritten by arguments to make
23
23
TAG? =1.0
24
- REGISTRY? =gcr.io/google_containers
24
+ REGISTRY? =k8s. gcr.io
25
25
ARCH? =amd64
26
26
27
27
all : build
@@ -33,7 +33,7 @@ build: nethealth
33
33
docker build -t $(REGISTRY ) /kube-nethealth-$(ARCH ) :$(TAG ) .
34
34
35
35
push : build
36
- ifeq ($(REGISTRY ) ,gcr.io/google_containers )
36
+ ifeq ($(REGISTRY ) ,k8s. gcr.io)
37
37
gcloud docker push $(REGISTRY)/kube-nethealth-$(ARCH):$(TAG)
38
38
else
39
39
docker push $(REGISTRY)/kube-nethealth-$(ARCH):$(TAG)
Original file line number Diff line number Diff line change 16
16
17
17
.PHONY : all build push
18
18
19
- PROJ ?= gcr.io/google_containers
19
+ PROJ ?= k8s. gcr.io
20
20
TAG := 0.1
21
21
22
22
all : push
You can’t perform that action at this time.
0 commit comments