k8s-samples/CKA_Course/pods/health/restart-onfailure.yaml

11 lines
179 B
YAML
Raw Normal View History

2022-08-17 02:59:58 +00:00
apiVersion: v1
kind: Pod
metadata:
name: onfailure-pod
spec:
restartPolicy: OnFailure
containers:
- name: busybox
image: busybox
command: ["sh", "-c", "sleep 10"]