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

11 lines
171 B
YAML
Raw Normal View History

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