Skip to content

Commit fbbfe20

Browse files
authored
Merge pull request #45837 from spurin/switch_liveness_to_multi_arch_image
Switch liveness image to multi-arch agnhost container image
2 parents ccb153d + 2a6ec81 commit fbbfe20

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ liveness-exec 1/1 Running 1 1m
140140
## Define a liveness HTTP request
141141

142142
Another kind of liveness probe uses an HTTP GET request. Here is the configuration
143-
file for a Pod that runs a container based on the `registry.k8s.io/liveness` image.
143+
file for a Pod that runs a container based on the `registry.k8s.io/e2e-test-images/agnhost` image.
144144

145145
{{% code_sample file="pods/probe/http-liveness.yaml" %}}
146146

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ metadata:
77
spec:
88
containers:
99
- name: liveness
10-
image: registry.k8s.io/liveness
10+
image: registry.k8s.io/e2e-test-images/agnhost:2.40
1111
args:
12-
- /server
12+
- liveness
1313
livenessProbe:
1414
httpGet:
1515
path: /healthz

0 commit comments

Comments
 (0)