DevOps/Kubernetes/pod-definition-with-init-container.yml

16 lines
275 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: red
spec:
containers:
- name: red-container
image: busybox:1.28
command: ["sh","-c","echo The app is running && sleep 3600"]
initContainers:
- name: busybox-container
image: busybox
command: ["sleep","20"]