12345678910111213141516171819202122232425 |
- 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
|