13 lines
196 B
YAML
13 lines
196 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: init-pod
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx:1.19.1
|
||
|
initContainers:
|
||
|
- name: delay
|
||
|
image: busybox
|
||
|
command: [ "sleep", "30" ]
|