Skip to content

Instantly share code, notes, and snippets.

@rohancme
Created July 15, 2017 01:36
Show Gist options
  • Save rohancme/9406469cfacc994a2ef02417a171de2b to your computer and use it in GitHub Desktop.
Save rohancme/9406469cfacc994a2ef02417a171de2b to your computer and use it in GitHub Desktop.
Kubernetes Persistent Volume for Jenkins
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: jenkins-master-claim
namespace: ci
annotations:
volume.beta.kubernetes.io/storage-class: fast
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Gi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment