Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d5b194d

Browse filesBrowse files
authored
Modify the image node-hello to hello-app (#46582)
1 parent d2e4406 commit d5b194d
Copy full SHA for d5b194d

File tree

8 files changed

+9
-9
lines changed
Filter options

8 files changed

+9
-9
lines changed

‎content/en/docs/tasks/extend-kubernetes/http-proxy-access-api.md

Copy file name to clipboardExpand all lines: content/en/docs/tasks/extend-kubernetes/http-proxy-access-api.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If you do not already have an application running in your cluster, start
1717
a Hello world application by entering this command:
1818

1919
```shell
20-
kubectl create deployment node-hello --image=gcr.io/google-samples/node-hello:1.0 --port=8080
20+
kubectl create deployment hello-app --image=gcr.io/google-samples/hello-app:2.0 --port=8080
2121
```
2222

2323
<!-- steps -->

‎content/en/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch.md

Copy file name to clipboardExpand all lines: content/en/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch.md
+2-2
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ spec:
243243
spec:
244244
containers:
245245
- name: patch-demo-ctr-3
246-
image: gcr.io/google-samples/node-hello:1.0
246+
image: gcr.io/google-samples/hello-app:2.0
247247
```
248248
249249
In your patch command, set `type` to `merge`:
@@ -264,7 +264,7 @@ The output shows that your list of one Container replaced the existing `containe
264264
```yaml
265265
spec:
266266
containers:
267-
- image: gcr.io/google-samples/node-hello:1.0
267+
- image: gcr.io/google-samples/hello-app:2.0
268268
...
269269
name: patch-demo-ctr-3
270270
```

‎content/en/docs/tutorials/stateless-application/expose-external-ip-address.md

Copy file name to clipboardExpand all lines: content/en/docs/tutorials/stateless-application/expose-external-ip-address.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ external IP address.
156156
```shell
157157
Hello, world!
158158
Version: 2.0.0
159-
Hostname: hello-world-2895499144-2e5uh
159+
Hostname: 0bd46b45f32f
160160
```
161161

162162
## {{% heading "cleanup" %}}

‎content/en/examples/pods/inject/envars.yaml

Copy file name to clipboardExpand all lines: content/en/examples/pods/inject/envars.yaml
+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: envar-demo-container
10-
image: gcr.io/google-samples/node-hello:1.0
10+
image: gcr.io/google-samples/hello-app:2.0
1111
env:
1212
- name: DEMO_GREETING
1313
value: "Hello from the environment"

‎content/en/examples/pods/security/security-context-2.yaml

Copy file name to clipboardExpand all lines: content/en/examples/pods/security/security-context-2.yaml
+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
runAsUser: 1000
88
containers:
99
- name: sec-ctx-demo-2
10-
image: gcr.io/google-samples/node-hello:1.0
10+
image: gcr.io/google-samples/hello-app:2.0
1111
securityContext:
1212
runAsUser: 2000
1313
allowPrivilegeEscalation: false

‎content/en/examples/pods/security/security-context-3.yaml

Copy file name to clipboardExpand all lines: content/en/examples/pods/security/security-context-3.yaml
+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ metadata:
55
spec:
66
containers:
77
- name: sec-ctx-3
8-
image: gcr.io/google-samples/node-hello:1.0
8+
image: gcr.io/google-samples/hello-app:2.0

‎content/en/examples/pods/security/security-context-4.yaml

Copy file name to clipboardExpand all lines: content/en/examples/pods/security/security-context-4.yaml
+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: sec-ctx-4
8-
image: gcr.io/google-samples/node-hello:1.0
8+
image: gcr.io/google-samples/hello-app:2.0
99
securityContext:
1010
capabilities:
1111
add: ["NET_ADMIN", "SYS_TIME"]

‎content/en/examples/service/load-balancer-example.yaml

Copy file name to clipboardExpand all lines: content/en/examples/service/load-balancer-example.yaml
+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
app.kubernetes.io/name: load-balancer-example
1616
spec:
1717
containers:
18-
- image: us-docker.pkg.dev/google-samples/containers/gke/hello-app:2.0
18+
- image: gcr.io/google-samples/hello-app:2.0
1919
name: hello-world
2020
ports:
2121
- containerPort: 8080

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.