50 lines
2.1 KiB
Smarty
50 lines
2.1 KiB
Smarty
{{/* Define the ml container */}}
|
|
{{- define "immich.microservices" -}}
|
|
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
securityContext:
|
|
runAsUser: {{ .Values.podSecurityContext.runAsUser }}
|
|
runAsGroup: {{ .Values.podSecurityContext.runAsGroup }}
|
|
readOnlyRootFilesystem: {{ .Values.securityContext.readOnlyRootFilesystem }}
|
|
runAsNonRoot: {{ .Values.securityContext.runAsNonRoot }}
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- chmod +x ./start-microservices.sh && ./start-microservices.sh
|
|
volumeMounts:
|
|
- name: uploads
|
|
mountPath: {{ .Values.persistence.uploads.mountPath }}
|
|
envFrom:
|
|
- secretRef:
|
|
name: '{{ include "tc.common.names.fullname" . }}-immich-secret'
|
|
- configMapRef:
|
|
name: '{{ include "tc.common.names.fullname" . }}-common-config'
|
|
- configMapRef:
|
|
name: '{{ include "tc.common.names.fullname" . }}-server-config'
|
|
#TODO: Add probes, probably checking if process is running?
|
|
# readinessProbe:
|
|
# httpGet:
|
|
# path: /
|
|
# port: {{ .Values.service.main.ports.main.port }}
|
|
# 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: {{ .Values.service.main.ports.main.port }}
|
|
# 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: {{ .Values.service.main.ports.main.port }}
|
|
# 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 -}}
|