Difference between revisions of "Liveness-exec"
Jump to navigation
Jump to search
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | {{lc}} | |
− | apiVersion: v1 | + | [[apiVersion: v1]] |
− | kind: Pod | + | kind: Pod |
− | metadata: | + | metadata: |
− | + | labels: | |
− | + | test: liveness | |
− | + | name: liveness-exec | |
− | spec: | + | spec: |
− | + | [[containers:]] | |
− | + | - name: liveness | |
− | + | image: registry.k8s.io/busybox | |
− | + | args: | |
− | + | - /bin/sh | |
− | + | - -c | |
− | + | - touch /tmp/healthy; sleep 30; rm -f /tmp/healthy; sleep 600 | |
− | + | [[livenessProbe]]: | |
− | + | exec: | |
− | + | command: | |
− | + | - cat | |
− | + | - /tmp/healthy | |
− | + | initialDelaySeconds: 5 | |
− | + | periodSeconds: 5 | |
− | + | ||
+ | |||
+ | {{Liveness}} |
Latest revision as of 10:53, 22 October 2024
apiVersion: v1 kind: Pod metadata: labels: test: liveness name: liveness-exec spec: containers: - name: liveness image: registry.k8s.io/busybox args: - /bin/sh - -c - touch /tmp/healthy; sleep 30; rm -f /tmp/healthy; sleep 600 livenessProbe: exec: command: - cat - /tmp/healthy initialDelaySeconds: 5 periodSeconds: 5
Advertising: