Skip to content

Instantly share code, notes, and snippets.

@afreeland
Created May 1, 2018 12:59
Show Gist options
  • Save afreeland/7dcbc2f976fd0876978f0e1b92cd100c to your computer and use it in GitHub Desktop.
Save afreeland/7dcbc2f976fd0876978f0e1b92cd100c to your computer and use it in GitHub Desktop.
k8s: PersistentVolumeClaim bare metal
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: let-us-claim
annotations:
volume.beta.kubernetes.io/storage-class: "slow"
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 8Gi
storageClassName: slow
volumeName: "pv0001"
selector:
matchLabels:
app: let-us-redis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment