This PR contains the following updates: | Package | Update | Change | |---|---|---| | [tccr.io/truecharts/immich-ml](https://togithub.com/truecharts/containers) | minor | `v1.71.0` -> `v1.73.0` | | [tccr.io/truecharts/immich-proxy](https://togithub.com/truecharts/containers) | minor | `v1.71.0` -> `v1.73.0` | | [tccr.io/truecharts/immich-server](https://togithub.com/truecharts/containers) | minor | `v1.71.0` -> `v1.73.0` | | [tccr.io/truecharts/immich-typesense](https://togithub.com/truecharts/containers) | minor | `v0.24.1` -> `v0.25.0` | | [tccr.io/truecharts/immich-web](https://togithub.com/truecharts/containers) | minor | `v1.71.0` -> `v1.73.0` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4zNS4xIiwidXBkYXRlZEluVmVyIjoiMzYuNDkuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9--> --------- Signed-off-by: TrueCharts-Bot <bot@truecharts.org> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
43 lines
1.3 KiB
Smarty
43 lines
1.3 KiB
Smarty
{{- define "immich.microservices" -}}
|
|
{{- $fname := (include "tc.v1.common.lib.chart.names.fullname" .) -}}
|
|
{{- $serverUrl := printf "http://%v-server:%v/server-info/ping" $fname .Values.service.server.ports.server.port }}
|
|
enabled: true
|
|
type: Deployment
|
|
podSpec:
|
|
initContainers:
|
|
wait-server:
|
|
{{/* Wait for server */}}
|
|
{{- include "immich.wait" (dict "url" $serverUrl) | nindent 6 }}
|
|
containers:
|
|
microservices:
|
|
enabled: true
|
|
primary: true
|
|
imageSelector: image
|
|
args: start-microservices.sh
|
|
securityContext:
|
|
capabilities:
|
|
disableS6Caps: true
|
|
envFrom:
|
|
- secretRef:
|
|
name: secret
|
|
- secretRef:
|
|
name: deps-secret
|
|
- configMapRef:
|
|
name: common-config
|
|
- configMapRef:
|
|
name: micro-config
|
|
probes:
|
|
readiness:
|
|
enabled: true
|
|
type: tcp
|
|
port: '{{ .Values.service.microservices.ports.microservices.port }}'
|
|
liveness:
|
|
enabled: true
|
|
type: tcp
|
|
port: '{{ .Values.service.microservices.ports.microservices.port }}'
|
|
startup:
|
|
enabled: true
|
|
type: tcp
|
|
port: '{{ .Values.service.microservices.ports.microservices.port }}'
|
|
{{- end -}}
|