Difference between revisions of "Create sidecars container"
Jump to navigation
Jump to search
(Welcome moved page Create sidecars container to Liveness-exec with sidecar container) Tag: New redirect |
(Removed redirect to Liveness-exec with sidecar container) Tag: Removed redirect |
||
Line 1: | Line 1: | ||
− | + | ||
+ | |||
+ | [[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"] | ||
+ | [[restartPolicy:]] Never | ||
+ | |||
+ | The Pod "liveness-exec" is invalid: spec.containers[1].restartPolicy: Forbidden: may not be set for non-init containers | ||
+ | == See also == | ||
+ | * {{pods}} | ||
+ | |||
+ | [[Category:K8s]] |
Revision as of 11:06, 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 - name: sidecar-container image: busybox command: ["sh", "-c", "while true; do sleep 3600; done"] restartPolicy: Never
The Pod "liveness-exec" is invalid: spec.containers[1].restartPolicy: Forbidden: may not be set for non-init containers
See also
- Pods:
kubectl apply
,kubectl [ pod get | top | delete | describe pods ]
,InitContainers, PodInitializing, CrashLoopBackOff, ImagePullPolicy:, NodeAffinity, NodeSelector, Terminated
Advertising: