Created
October 2, 2020 15:24
-
-
Save ams0/38fc64b3fac2adf3a53d1952dfa040c4 to your computer and use it in GitHub Desktop.
storageclass_csi-azure-disk.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kubectl apply -f -<<EOF | |
--- | |
apiVersion: storage.k8s.io/v1 | |
kind: StorageClass | |
metadata: | |
name: managed-ultra-csi | |
provisioner: disk.csi.azure.com | |
parameters: | |
skuname: UltraSSD_LRS # alias: storageaccounttype, available values: Standard_LRS, Premium_LRS, StandardSSD_LRS, UltraSSD_LRS | |
reclaimPolicy: Delete | |
volumeBindingMode: Immediate | |
allowVolumeExpansion: true | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment