busybox-pod.yaml 307 B

1234567891011121314
  1. apiVersion: v1
  2. kind: Pod
  3. metadata:
  4. name: busybox1
  5. labels:
  6. app: busybox1
  7. spec:
  8. containers:
  9. - image: busybox
  10. command: ["/bin/sh", "-c", "mkdir -p /root/foo/bar && echo 'foobar' > /root/foo/bar/foo.bar && sleep 3600"]
  11. imagePullPolicy: IfNotPresent
  12. name: busybox
  13. restartPolicy: Always