25 lines
424 B
YAML
25 lines
424 B
YAML
|
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
|