frontend-deployment.yaml.in 521 B

123456789101112131415161718192021222324252627
  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: frontend
  5. spec:
  6. replicas: 3
  7. selector:
  8. matchLabels:
  9. app: guestbook
  10. tier: frontend
  11. template:
  12. metadata:
  13. labels:
  14. app: guestbook
  15. tier: frontend
  16. spec:
  17. containers:
  18. - name: guestbook-frontend
  19. image: {{.AgnhostImage}}
  20. args: [ "guestbook", "--backend-port", "6379" ]
  21. resources:
  22. requests:
  23. cpu: 100m
  24. memory: 100Mi
  25. ports:
  26. - containerPort: 80