kubernetes/hack/testdata/recursive/rc/rc/busybox-broken.yaml

apiVersion: v1
ind: ReplicationController
metadata:
  name: busybox2
  labels:
    app: busybox2
spec:
  replicas: 1
  selector:
    app: busybox2
  template:
    metadata:
      name: busybox2
      labels:
        app: busybox2
    spec:
      containers:
      - image: busybox
        command:
          - sleep
          - "3600"
        imagePullPolicy: IfNotPresent
        name: busybox
      restartPolicy: Always