Pass 2: k8s GCR vanity URL (#8006)

This commit is contained in:
Tim Hockin
2018-04-06 15:13:09 -04:00
committed by k8s-ci-robot
parent 45a0819cdc
commit 8dff71a36b
11 changed files with 21 additions and 20 deletions
+4 -4
View File
@@ -203,7 +203,7 @@ metadata:
spec:
containers:
- name: pause
image: gcr.io/google-containers/pause
image: k8s.gcr.io/pause
EOF
Error from server (Forbidden): error when creating "STDIN": pods "pause" is forbidden: unable to validate against any pod security policy: []
```
@@ -247,7 +247,7 @@ metadata:
spec:
containers:
- name: pause
image: gcr.io/google-containers/pause
image: k8s.gcr.io/pause
EOF
pod "pause" created
```
@@ -264,7 +264,7 @@ metadata:
spec:
containers:
- name: pause
image: gcr.io/google-containers/pause
image: k8s.gcr.io/pause
securityContext:
privileged: true
EOF
@@ -282,7 +282,7 @@ $ kubectl-user delete pod pause
Let's try that again, slightly differently:
```shell
$ kubectl-user run pause --image=gcr.io/google-containers/pause
$ kubectl-user run pause --image=k8s.gcr.io/pause
deployment "pause" created
$ kubectl-user get pods
No resources found.