job-values.yaml 956 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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: Job
  20. ttlSecondsAfterFinished: 0
  21. podSpec:
  22. restartPolicy: Never
  23. containers:
  24. main:
  25. enabled: true
  26. primary: true
  27. args:
  28. - --port
  29. - "8080"
  30. probes:
  31. liveness:
  32. enabled: true
  33. type: http
  34. port: "{{ .Values.service.main.ports.main.port }}"
  35. readiness:
  36. enabled: true
  37. type: http
  38. port: "{{ .Values.service.main.ports.main.port }}"
  39. startup:
  40. enabled: true
  41. type: http
  42. port: "{{ .Values.service.main.ports.main.port }}"