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