diff --git a/deploy/example/blobfuse-mi/pv-blobfuse-mi.yaml b/deploy/example/blobfuse-mi/pv-blobfuse-mi.yaml index 27b761863..661db464d 100644 --- a/deploy/example/blobfuse-mi/pv-blobfuse-mi.yaml +++ b/deploy/example/blobfuse-mi/pv-blobfuse-mi.yaml @@ -1,3 +1,4 @@ +--- apiVersion: v1 kind: PersistentVolume metadata: diff --git a/deploy/example/blobfuse-mi/storageclass-blobfuse-mi.yaml b/deploy/example/blobfuse-mi/storageclass-blobfuse-mi.yaml index 0297b63cc..b862cc2b7 100644 --- a/deploy/example/blobfuse-mi/storageclass-blobfuse-mi.yaml +++ b/deploy/example/blobfuse-mi/storageclass-blobfuse-mi.yaml @@ -5,11 +5,11 @@ metadata: name: blob-fuse provisioner: blob.csi.azure.com parameters: - skuName: Premium_LRS + skuName: Premium_LRS protocol: fuse - resourceGroup: EXISTING_RESOURCE_GROUP_NAME - storageAccount: EXISTING_STORAGE_ACCOUNT_NAME # optional, if use existing storage account - containerName: EXISTING_CONTAINER_NAME # optional, if use existing container + resourceGroup: EXISTING_RESOURCE_GROUP_NAME # optional, node resource group by default if it's not provided + storageAccount: EXISTING_STORAGE_ACCOUNT_NAME # optional, a new account will be created if it's not provided + containerName: EXISTING_CONTAINER_NAME # optional, a new container will be created if it's not provided AzureStorageAuthType: MSI AzureStorageIdentityClientID: "xxxxx-xxxx-xxx-xxx-xxxxxxx" reclaimPolicy: Delete diff --git a/hack/verify-yamllint.sh b/hack/verify-yamllint.sh index 6bdb1ffaa..f7f23f82f 100755 --- a/hack/verify-yamllint.sh +++ b/hack/verify-yamllint.sh @@ -29,7 +29,7 @@ if [[ "${deployDirNum}" != "${helmDirNum}" ]]; then exit 1 fi -for path in "deploy/*.yaml" "deploy/example/*.yaml" "deploy/example/metrics/*.yaml" "deploy/example/cloning/*.yaml" +for path in "deploy/*.yaml" "deploy/example/*.yaml" "deploy/example/metrics/*.yaml" "deploy/example/cloning/*.yaml" "deploy/example/blobfuse-mi/*.yaml" "deploy/example/nfs/*.yaml" do echo "checking yamllint under path: $path ..." yamllint -f parsable $path | grep -v "line too long" > $LOG