Skip to content

Commit 7b5ca4d

Browse files
committed
update image tag in manifest
1 parent 641ea80 commit 7b5ca4d

12 files changed

+16
-16
lines changed

content/en/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ broken states, and cannot recover except by being restarted. Kubernetes provides
6060
liveness probes to detect and remedy such situations.
6161

6262
In this exercise, you create a Pod that runs a container based on the
63-
`registry.k8s.io/busybox` image. Here is the configuration file for the Pod:
63+
`registry.k8s.io/busybox:1.27.2` image. Here is the configuration file for the Pod:
6464

6565
{{% code_sample file="pods/probe/exec-liveness.yaml" %}}
6666

@@ -101,8 +101,8 @@ The output indicates that no liveness probes have failed yet:
101101
Type Reason Age From Message
102102
---- ------ ---- ---- -------
103103
Normal Scheduled 11s default-scheduler Successfully assigned default/liveness-exec to node01
104-
Normal Pulling 9s kubelet, node01 Pulling image "registry.k8s.io/busybox"
105-
Normal Pulled 7s kubelet, node01 Successfully pulled image "registry.k8s.io/busybox"
104+
Normal Pulling 9s kubelet, node01 Pulling image "registry.k8s.io/busybox:1.27.2"
105+
Normal Pulled 7s kubelet, node01 Successfully pulled image "registry.k8s.io/busybox:1.27.2"
106106
Normal Created 7s kubelet, node01 Created container liveness
107107
Normal Started 7s kubelet, node01 Started container liveness
108108
```
@@ -120,8 +120,8 @@ probes have failed, and the failed containers have been killed and recreated.
120120
Type Reason Age From Message
121121
---- ------ ---- ---- -------
122122
Normal Scheduled 57s default-scheduler Successfully assigned default/liveness-exec to node01
123-
Normal Pulling 55s kubelet, node01 Pulling image "registry.k8s.io/busybox"
124-
Normal Pulled 53s kubelet, node01 Successfully pulled image "registry.k8s.io/busybox"
123+
Normal Pulling 55s kubelet, node01 Pulling image "registry.k8s.io/busybox:1.27.2"
124+
Normal Pulled 53s kubelet, node01 Successfully pulled image "registry.k8s.io/busybox:1.27.2"
125125
Normal Created 53s kubelet, node01 Created container liveness
126126
Normal Started 53s kubelet, node01 Started container liveness
127127
Warning Unhealthy 10s (x3 over 20s) kubelet, node01 Liveness probe failed: cat: can't open '/tmp/healthy': No such file or directory

content/en/examples/pods/inject/dapi-envars-container.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: test-container
8-
image: registry.k8s.io/busybox:1.24
8+
image: registry.k8s.io/busybox:1.27.2
99
command: [ "sh", "-c"]
1010
args:
1111
- while true; do

content/en/examples/pods/inject/dapi-envars-pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: test-container
8-
image: registry.k8s.io/busybox
8+
image: registry.k8s.io/busybox:1.27.2
99
command: [ "sh", "-c"]
1010
args:
1111
- while true; do

content/en/examples/pods/inject/dapi-volume-resources.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: client-container
8-
image: registry.k8s.io/busybox:1.24
8+
image: registry.k8s.io/busybox:1.27.2
99
command: ["sh", "-c"]
1010
args:
1111
- while true; do

content/en/examples/pods/inject/dapi-volume.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ metadata:
1212
spec:
1313
containers:
1414
- name: client-container
15-
image: registry.k8s.io/busybox
15+
image: registry.k8s.io/busybox:1.27.2
1616
command: ["sh", "-c"]
1717
args:
1818
- while true; do

content/en/examples/pods/pod-configmap-env-var-valueFrom.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: test-container
8-
image: registry.k8s.io/busybox
8+
image: registry.k8s.io/busybox:1.27.2
99
command: [ "/bin/echo", "$(SPECIAL_LEVEL_KEY) $(SPECIAL_TYPE_KEY)" ]
1010
env:
1111
- name: SPECIAL_LEVEL_KEY

content/en/examples/pods/pod-configmap-envFrom.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: test-container
8-
image: registry.k8s.io/busybox
8+
image: registry.k8s.io/busybox:1.27.2
99
command: [ "/bin/sh", "-c", "env" ]
1010
envFrom:
1111
- configMapRef:

content/en/examples/pods/pod-configmap-volume-specific-key.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: test-container
8-
image: registry.k8s.io/busybox
8+
image: registry.k8s.io/busybox:1.27.2
99
command: [ "/bin/sh","-c","cat /etc/config/keys" ]
1010
volumeMounts:
1111
- name: config-volume

content/en/examples/pods/pod-configmap-volume.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: test-container
8-
image: registry.k8s.io/busybox
8+
image: registry.k8s.io/busybox:1.27.2
99
command: [ "/bin/sh", "-c", "ls /etc/config/" ]
1010
volumeMounts:
1111
- name: config-volume

content/en/examples/pods/pod-multiple-configmap-env-variable.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: test-container
8-
image: registry.k8s.io/busybox
8+
image: registry.k8s.io/busybox:1.27.2
99
command: [ "/bin/sh", "-c", "env" ]
1010
env:
1111
- name: SPECIAL_LEVEL_KEY

content/en/examples/pods/pod-single-configmap-env-variable.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: test-container
8-
image: registry.k8s.io/busybox
8+
image: registry.k8s.io/busybox:1.27.2
99
command: [ "/bin/sh", "-c", "env" ]
1010
env:
1111
# Define the environment variable

content/en/examples/pods/probe/exec-liveness.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: liveness
10-
image: registry.k8s.io/busybox
10+
image: registry.k8s.io/busybox:1.27.2
1111
args:
1212
- /bin/sh
1313
- -c

0 commit comments

Comments
 (0)