CSI Specific Configuration
blob-csi-driver (Azure Blob Storage)
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: blob-fuse
provisioner: blob.csi.azure.com
parameters:
protocol: fuse2
reclaimPolicy: Retain
volumeBindingMode: Immediate
allowVolumeExpansion: true
mountOptions:
# Resolves the issue where non-root containers cannot access the mounted blob container.
- -o allow_other
# Ensures list operations (critical for backups/deletion) work immediately upon mount.
- --cancel-list-on-mount-seconds=0Issue 1: Access for Non-Root Containers (-o allow_other)
-o allow_other)Issue 2: Immediate List Operations and Backup Deletion (--cancel-list-on-mount-seconds=0)
--cancel-list-on-mount-seconds=0)Last updated
Was this helpful?

