Skip to content

Instantly share code, notes, and snippets.

@victortrac
Created October 16, 2017 04:33
Show Gist options
  • Save victortrac/1c700e4e4ae0dbdfe27773d0656d58bf to your computer and use it in GitHub Desktop.
Save victortrac/1c700e4e4ae0dbdfe27773d0656d58bf to your computer and use it in GitHub Desktop.
k8s dynamic PVC
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: jenkins
labels:
app: jenkins
annotations:
volume.alpha.kubernetes.io/storage-class: default
spec:
accessModes:
- "ReadWriteOnce"
resources:
requests:
storage: "20Gi"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment