1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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: Job
- ttlSecondsAfterFinished: 0
- podSpec:
- restartPolicy: Never
- 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 }}"
|