1. apiVersion: apps/v1
    2. kind: Deployment
    3. metadata:
    4. name: busy-box
    5. spec:
    6. replicas: 1
    7. selector:
    8. matchLabels:
    9. app: busy-box
    10. template:
    11. metadata:
    12. labels:
    13. app: busy-box
    14. spec:
    15. containers:
    16. - name: busy-box
    17. image: busybox
    18. command:
    19. - /bin/sh
    20. - -c
    21. - sleep 3000