123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- image:
- repository: traefik/whoami
- pullPolicy: IfNotPresent
- tag: latest
- service:
- main:
- enabled: true
- primary: true
- ports:
- main:
- enabled: true
- primary: true
- protocol: http
- port: 8080
- workload:
- main:
- enabled: true
- primary: true
- type: CronJob
- schedule: "*/1 * * * *"
- ttlSecondsAfterFinished: 0
- podSpec:
- restartPolicy: OnFailure
- containers:
- main:
- enabled: true
- primary: true
- args:
- - --port
- - "8080"
- probes:
- liveness:
- enabled: true
- type: http
- port: "{{ .Values.service.main.ports.main.port }}"
- readiness:
- enabled: true
- type: http
- port: "{{ .Values.service.main.ports.main.port }}"
- startup:
- enabled: true
- type: http
- port: "{{ .Values.service.main.ports.main.port }}"
|