k8s.io/kubernetes@v1.31.0-alpha.0.0.20240520171757-56147500dadc/hack/testdata/recursive/rc/busybox.yaml (about)

     1  apiVersion: v1
     2  kind: ReplicationController
     3  metadata:
     4    name: busybox0
     5    labels:
     6      app: busybox0
     7  spec:
     8    replicas: 1
     9    selector:
    10      app: busybox0
    11    template:
    12      metadata:
    13        name: busybox0
    14        labels:
    15          app: busybox0
    16      spec:
    17        containers:
    18        - image: busybox
    19          command:
    20            - sleep
    21            - "3600"
    22          imagePullPolicy: IfNotPresent
    23          name: busybox
    24        restartPolicy: Always