k8s.io/kubernetes@v1.29.3/test/e2e/testing-manifests/kubectl/busybox-pod.yaml.in (about)

     1  apiVersion: v1
     2  kind: Pod
     3  metadata:
     4    name: busybox1
     5    labels:
     6      app: busybox1
     7  spec:
     8    containers:
     9    - image: {{.BusyBoxImage}}
    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