45 lines
1.8 KiB
Smarty
45 lines
1.8 KiB
Smarty
|
{{/* Define the web container */}}
|
||
|
{{- define "immich.web" -}}
|
||
|
{{- if hasKey .Values "imageWeb" -}} {{/* For smooth upgrade, Remove later */}}
|
||
|
{{- $img := .Values.imageWeb -}}
|
||
|
{{- $_ := set .Values "webImage" (dict "repository" $img.repository "tag" $img.tag "pullPolicy" $img.pullPolicy) -}}
|
||
|
{{- end }}
|
||
|
image: {{ .Values.webImage.repository }}:{{ .Values.webImage.tag }}
|
||
|
imagePullPolicy: {{ .Values.webImage.pullPolicy }}
|
||
|
securityContext:
|
||
|
runAsUser: {{ .Values.podSecurityContext.runAsUser }}
|
||
|
runAsGroup: {{ .Values.podSecurityContext.runAsGroup }}
|
||
|
readOnlyRootFilesystem: {{ .Values.securityContext.readOnlyRootFilesystem }}
|
||
|
runAsNonRoot: {{ .Values.securityContext.runAsNonRoot }}
|
||
|
command:
|
||
|
- /bin/sh
|
||
|
- ./entrypoint.sh
|
||
|
envFrom:
|
||
|
- configMapRef:
|
||
|
name: '{{ include "tc.common.names.fullname" . }}-common-config'
|
||
|
readinessProbe:
|
||
|
httpGet:
|
||
|
path: /
|
||
|
port: 3000
|
||
|
initialDelaySeconds: {{ .Values.probes.readiness.spec.initialDelaySeconds }}
|
||
|
timeoutSeconds: {{ .Values.probes.readiness.spec.timeoutSeconds }}
|
||
|
periodSeconds: {{ .Values.probes.readiness.spec.periodSeconds }}
|
||
|
failureThreshold: {{ .Values.probes.readiness.spec.failureThreshold }}
|
||
|
livenessProbe:
|
||
|
httpGet:
|
||
|
path: /
|
||
|
port: 3000
|
||
|
initialDelaySeconds: {{ .Values.probes.liveness.spec.initialDelaySeconds }}
|
||
|
timeoutSeconds: {{ .Values.probes.liveness.spec.timeoutSeconds }}
|
||
|
periodSeconds: {{ .Values.probes.liveness.spec.periodSeconds }}
|
||
|
failureThreshold: {{ .Values.probes.liveness.spec.failureThreshold }}
|
||
|
startupProbe:
|
||
|
httpGet:
|
||
|
path: /
|
||
|
port: 3000
|
||
|
initialDelaySeconds: {{ .Values.probes.startup.spec.initialDelaySeconds }}
|
||
|
timeoutSeconds: {{ .Values.probes.startup.spec.timeoutSeconds }}
|
||
|
periodSeconds: {{ .Values.probes.startup.spec.periodSeconds }}
|
||
|
failureThreshold: {{ .Values.probes.startup.spec.failureThreshold }}
|
||
|
{{- end -}}
|