cron-values.yaml 992 B

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