cka-SVV/init-container.yaml
Alexander van Vugt 47a50a0f7c initial upload
2019-12-04 12:10:43 +01:00

16 lines
287 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: init-demo
labels:
app: init-demo
spec:
containers:
- name: demo-container
image: busybox
command: ['sh', '-c', 'sleep 3600']
initContainers:
- name: init-container
image: busybox
command: ['sh', '-c', 'sleep 30']