Created
April 18, 2018 08:10
-
-
Save ahelland/002bc796cdad05a8b0bef68b04fa2fc6 to your computer and use it in GitHub Desktop.
Kubernetes YAML definition for azure-file-pvc referred to in "Building Microservices with AKS and VSTS — Part 4"
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
apiVersion: v1 | |
kind: PersistentVolumeClaim | |
metadata: | |
name: azurefile | |
spec: | |
accessModes: | |
- ReadWriteOnce | |
storageClassName: azurefile | |
resources: | |
requests: | |
storage: 5Gi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment