diff options
| -rw-r--r-- | f3s/immich/values.yaml | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/f3s/immich/values.yaml b/f3s/immich/values.yaml index 3159d2e..141a5a9 100644 --- a/f3s/immich/values.yaml +++ b/f3s/immich/values.yaml @@ -22,12 +22,19 @@ immich: # Server component with ingress server: enabled: true - persistence: - yoga-videos: - enabled: true - type: persistentVolumeClaim - existingClaim: "immich-yoga-videos-pvc" - mountPath: /external/yoga-videos + controllers: + main: + containers: + main: + volumeMounts: + - name: yoga-videos + mountPath: /external/yoga-videos + readOnly: true + volumes: + - name: yoga-videos + persistentVolumeClaim: + claimName: immich-yoga-videos-pvc + readOnly: true ingress: main: enabled: true |
