Last active
April 4, 2019 20:05
-
-
Save wuestkamp/71506254d21aee3ef7c25cddd2c3ed57 to your computer and use it in GitHub Desktop.
CKAD challenge #3
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: PersistentVolume | |
apiVersion: v1 | |
metadata: | |
name: task-pv-volume | |
labels: | |
id: vol1 | |
spec: | |
storageClassName: manual | |
capacity: | |
storage: 50Mi | |
accessModes: | |
- ReadWriteOnce | |
hostPath: | |
path: "/tmp/k8s-challenge-3" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment