12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {{- define "whoogle.workload" -}}
- {{- $redirects := list -}}
- {{- range $r := .Values.whoogleConfig.redirects -}}
- {{- $redirects = append $redirects (printf "%s:%s" $r.src $r.dst) -}}
- {{- end }}
- workload:
- whoogle:
- enabled: true
- primary: true
- type: Deployment
- podSpec:
- hostNetwork: {{ .Values.whoogleNetwork.hostNetwork }}
- securityContext:
- fsGroup: 927
- containers:
- whoogle:
- enabled: true
- primary: true
- imageSelector: image
- securityContext:
- runAsUser: 927
- runAsGroup: 927
- readOnlyRootFilesystem: false
- env:
- EXPOSE_PORT: {{ .Values.whoogleNetwork.webPort }}
- {{- with $redirects }}
- WHOOGLE_REDIRECTS: {{ join "," $redirects }}
- {{- end -}}
- {{ with .Values.whoogleConfig.additionalEnvs }}
- envList:
- {{ range $env := . }}
- - name: {{ $env.name }}
- value: {{ $env.value }}
- {{ end }}
- {{ end }}
- probes:
- liveness:
- enabled: true
- type: http
- port: {{ .Values.whoogleNetwork.webPort }}
- path: /healthz
- readiness:
- enabled: true
- type: http
- port: {{ .Values.whoogleNetwork.webPort }}
- path: /healthz
- startup:
- enabled: true
- type: http
- port: {{ .Values.whoogleNetwork.webPort }}
- path: /healthz
- initContainers:
- {{- include "ix.v1.common.app.permissions" (dict "containerName" "01-permissions"
- "UID" 927
- "GID" 927
- "mode" "check"
- "type" "init") | nindent 8 }}
- {{- end -}}
|