Skip to content

Instantly share code, notes, and snippets.

@rootfs
Created May 29, 2018 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rootfs/f58942f263301169aedf2517ae9b5e20 to your computer and use it in GitHub Desktop.
Save rootfs/f58942f263301169aedf2517ae9b5e20 to your computer and use it in GitHub Desktop.
kind: StorageClass
apiVersion: storage.k8s.io/v1beta1
metadata:
name: slow
provisioner: kubernetes.io/azure-file
parameters:
skuName: Standard_LRS
location: eastus
secretnamespace: azure-file-ns
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: azpvc
spec:
accessModes:
- ReadWriteMany
resources:
requests:
storage: 1Gi
storageClassName: slow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment