helm: add an option to allow NFS mount soft fail
pipeline / build-and-push-images (push) Failing after 29s
pipeline / lint-and-publish-chart (push) Has been skipped

This commit is contained in:
2026-07-09 16:13:48 +02:00
parent 3c692adc9b
commit 357601574b
4 changed files with 41 additions and 3 deletions
+7
View File
@@ -104,3 +104,10 @@ nfs:
storageSize: 10Gi
# Storage class name (leave empty for default)
storageClassName: ""
# When true, use a sidecar container with mount propagation instead of PV/PVC
# so the pod can still start if the NFS server is unreachable. The sidecar
# will attempt to mount NFS directly into the shared volume; if it fails the
# app runs with an empty public directory. Files are served directly from NFS
# (no copying), making this suitable for large volumes.
# Requires: SYS_ADMIN capability on the sidecar, mountPropagation support.
softFail: false