Difference between revisions of "Liveness-exec"

From wikieduonline
Jump to navigation Jump to search
(Created page with "<pre> apiVersion: v1 kind: Pod metadata: labels: test: liveness name: liveness-exec spec: containers: - name: liveness image: registry.k8s.io/busybox args:...")
 
Line 14: Line 14:
 
     - -c
 
     - -c
 
     - touch /tmp/healthy; sleep 30; rm -f /tmp/healthy; sleep 600
 
     - touch /tmp/healthy; sleep 30; rm -f /tmp/healthy; sleep 600
     livenessProbe:
+
     [[livenessProbe]]:
 
       exec:
 
       exec:
 
         command:
 
         command:

Revision as of 10:49, 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: