busybox.yaml 424 B

12345678910111213141516171819202122232425
  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