Created
July 15, 2017 01:34
-
-
Save rohancme/a1816d23abf6791d123d2272e84f958b to your computer and use it in GitHub Desktop.
Kubernetes storage class definitions for Azure
This file contains 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
kind: StorageClass | |
apiVersion: storage.k8s.io/v1 | |
metadata: | |
name: fast | |
provisioner: kubernetes.io/azure-disk | |
parameters: | |
skuName: Premium_LRS | |
location: southcentralus | |
--- | |
kind: StorageClass | |
apiVersion: storage.k8s.io/v1 | |
metadata: | |
name: slow | |
provisioner: kubernetes.io/azure-disk | |
parameters: | |
skuName: Standard_LRS | |
location: southcentralus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment