Difference between revisions of "Liveness-exec with sidecar container"

From wikieduonline
Jump to navigation Jump to search
(Created page with " cat kk.yml apiVersion: v1 kind: Pod metadata: labels: test: liveness name: liveness-exec spec: containers: - name: liveness image: registry.k8s.io/busybox...")
 
Line 1: Line 1:
  
cat kk.yml  
+
cat kk.yml  
apiVersion: v1
+
apiVersion: v1
kind: Pod
+
kind: Pod
metadata:
+
metadata:
  labels:
+
  labels:
    test: liveness
+
    test: liveness
  name: liveness-exec
+
  name: liveness-exec
spec:
+
spec:
  containers:
+
  containers:
  - name: liveness
+
  - name: liveness
    image: registry.k8s.io/busybox
+
    image: registry.k8s.io/busybox
    args:
+
    args:
    - /bin/sh
+
    - /bin/sh
    - -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:
        - cat
+
        - cat
        - /tmp/healthy
+
        - /tmp/healthy
      initialDelaySeconds: 5
+
      initialDelaySeconds: 5
      periodSeconds: 5
+
      periodSeconds: 5
  - name: sidecar-container
+
  - name: sidecar-container
    image: busybox
+
    image: busybox
    command: ["sh", "-c", "while true; do sleep 3600; done"]
+
    command: ["sh", "-c", "while true; do sleep 3600; done"]
  
  

Revision as of 10:57, 22 October 2024

cat kk.yml 
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
  - name: sidecar-container
    image: busybox
    command: ["sh", "-c", "while true; do sleep 3600; done"]


See also

Advertising: