github.com/csi-driver/blobfuse-csi-driver@v0.5.0/deploy/example/pv-blobfuse-csi.yaml (about)

     1  ---
     2  apiVersion: v1
     3  kind: PersistentVolume
     4  metadata:
     5    name: pv-blobfuse
     6  spec:
     7    capacity:
     8      storage: 10Gi
     9    accessModes:
    10      - ReadWriteMany
    11    persistentVolumeReclaimPolicy: Retain  # "Delete" is not supported in static provisioning
    12    mountOptions:
    13      - -o allow_other
    14      - --file-cache-timeout-in-seconds=120
    15    csi:
    16      driver: blobfuse.csi.azure.com
    17      readOnly: false
    18      volumeHandle: arbitrary-volumeid
    19      volumeAttributes:
    20        containerName: EXISTING_CONTAINER_NAME
    21      nodeStageSecretRef:
    22        name: azure-secret
    23        namespace: default