deployment.yaml 369 B

123456789101112131415161718192021
  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: template-single
  5. labels:
  6. app: template-single
  7. spec:
  8. replicas: 1
  9. selector:
  10. matchLabels:
  11. app: template-single
  12. template:
  13. metadata:
  14. labels:
  15. app: template-single
  16. spec:
  17. containers:
  18. - name : main
  19. image: template-single
  20. imagePullPolicy: Always