deployment.yaml 619 B

123456789101112131415161718192021222324252627282930
  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: maloja
  5. spec:
  6. selector:
  7. matchLabels:
  8. app.kubernetes.io/name: maloja
  9. app.kubernetes.io/part-of: maloja
  10. template:
  11. metadata:
  12. labels:
  13. app.kubernetes.io/name: maloja
  14. app.kubernetes.io/part-of: maloja
  15. spec:
  16. containers:
  17. - image: krateng/maloja
  18. name: maloja
  19. ports:
  20. - containerPort: 42010
  21. name: http
  22. protocol: TCP
  23. resources:
  24. limits:
  25. cpu: 4000m
  26. memory: 1024Mi
  27. requests:
  28. cpu: 20m
  29. memory: 512Mi