Merge "Migrate devstack images to Ansible provisioners"
[releng/builder.git] / packer / provision / examples / busybox.yaml
1 ---
2 apiVersion: v1
3 kind: Pod
4 metadata:
5   name: busybox
6   namespace: default
7 spec:
8   containers:
9     - image: busybox
10       command:
11         - sleep
12         - "3600"
13       imagePullPolicy: IfNotPresent
14       name: busybox
15   restartPolicy: Always