basic-values.yaml 905 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. image:
  2. repository: traefik/whoami
  3. pullPolicy: IfNotPresent
  4. tag: latest
  5. service:
  6. main:
  7. enabled: true
  8. primary: true
  9. ports:
  10. main:
  11. enabled: true
  12. primary: true
  13. protocol: http
  14. port: 8080
  15. workload:
  16. main:
  17. enabled: true
  18. primary: true
  19. type: Deployment
  20. podSpec:
  21. containers:
  22. main:
  23. enabled: true
  24. primary: true
  25. args:
  26. - --port
  27. - "8080"
  28. probes:
  29. liveness:
  30. enabled: true
  31. type: http
  32. port: "{{ .Values.service.main.ports.main.port }}"
  33. readiness:
  34. enabled: true
  35. type: http
  36. port: "{{ .Values.service.main.ports.main.port }}"
  37. startup:
  38. enabled: true
  39. type: http
  40. port: "{{ .Values.service.main.ports.main.port }}"