mirror of
https://github.com/truenas/charts.git
synced 2026-06-14 22:25:57 +08:00
* initial commit * add some todo * extend config * remove typesense url * add microservices * add proxy and typesense * ML * fix configmap * fixup config * change range * one more * add some inits * ts dont need to wait for server * wait web * add redis * fix redis * wrong space * type * add redis service * conditional services * fix redis... * add caps * fix capabilities * fix service * add tests * fix conditional pods * fix upgrade_strategy * fix config * lint * whops * update strategy * make robust * cleaner * fix regex * Take a copy of the resources before we start doing modifications * regen commontgz * bump versions * add pullPolicy * regen common * bump version * bump * bump helm * regen common * Update library/ix-dev/community/immich/values.yaml * bump * update resources validation
42 lines
1.3 KiB
Smarty
42 lines
1.3 KiB
Smarty
{{- define "immich.machinelearning.workload" -}}
|
|
{{- $fullname := (include "ix.v1.common.lib.chart.names.fullname" $) -}}
|
|
{{- $url := printf "http://%v-server:%v/server-info/ping" $fullname .Values.immichNetwork.serverPort }}
|
|
workload:
|
|
machinelearning:
|
|
enabled: true
|
|
type: Deployment
|
|
podSpec:
|
|
hostNetwork: false
|
|
containers:
|
|
machinelearning:
|
|
enabled: true
|
|
primary: true
|
|
imageSelector: mlImage
|
|
securityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
envFrom:
|
|
- configMapRef:
|
|
name: ml-config
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
type: http
|
|
port: {{ .Values.immichNetwork.machinelearningPort }}
|
|
path: /ping
|
|
readiness:
|
|
enabled: true
|
|
type: http
|
|
port: {{ .Values.immichNetwork.machinelearningPort }}
|
|
path: /ping
|
|
startup:
|
|
enabled: true
|
|
type: http
|
|
port: {{ .Values.immichNetwork.machinelearningPort }}
|
|
path: /ping
|
|
initContainers:
|
|
{{- include "immich.wait.init" (dict "url" $url) | indent 8 }}
|
|
{{- end -}}
|