diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-30 22:25:47 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-30 22:25:47 +0200 |
| commit | 7546a83ca91fbb819d3dfb294539f7d2ab0bfa2f (patch) | |
| tree | 333365446a36269e74972c702c2e8a135d13cc02 /f3s/immich/helm-chart | |
| parent | 7a38c288be0b393a5d4a2a181d5c2223bf84e361 (diff) | |
Add persistent yoga-videos volume patch via Kustomization
- Creates deployment patch that adds yoga-videos PVC volume mount
- Persists across Helm upgrades via custom helm-chart resources
- Mounts to /external/yoga-videos in immich-server
Amp-Thread-ID: https://ampcode.com/threads/T-019c1088-dc3e-701a-b064-5e50cf52b32a
Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'f3s/immich/helm-chart')
| -rw-r--r-- | f3s/immich/helm-chart/templates/kustomization-patch.yaml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/f3s/immich/helm-chart/templates/kustomization-patch.yaml b/f3s/immich/helm-chart/templates/kustomization-patch.yaml new file mode 100644 index 0000000..49be46b --- /dev/null +++ b/f3s/immich/helm-chart/templates/kustomization-patch.yaml @@ -0,0 +1,19 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: immich-server + namespace: services +spec: + template: + spec: + containers: + - name: immich-server + volumeMounts: + - name: yoga-videos + mountPath: /external/yoga-videos + readOnly: true + volumes: + - name: yoga-videos + persistentVolumeClaim: + claimName: immich-yoga-videos-pvc + readOnly: true |
