cri-o/vendor/k8s.io/kubernetes/hack/testdata/recursive/rc/busybox.yaml

25 lines
424 B
YAML
Raw Normal View History

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