Skip to content

Instantly share code, notes, and snippets.

@fabiocruzcoelho
Created August 30, 2017 20:05
Show Gist options
  • Save fabiocruzcoelho/6ec06c3bd5ea6c7e89cc673b376aa5d7 to your computer and use it in GitHub Desktop.
Save fabiocruzcoelho/6ec06c3bd5ea6c7e89cc673b376aa5d7 to your computer and use it in GitHub Desktop.
Modelo Volume Persistente: PV/PVC
apiVersion: v1
kind: PersistentVolume
metadata:
name: grafana-pv
namespace: fabio
spec:
capacity:
storage: 20Gi
accessModes:
- ReadWriteMany
persistentVolumeReclaimPolicy: Recycle
nfs:
path: /NFSKUBE/grafana
server: 192.168.10.10
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: grafana-pvc
namespace: fabio
spec:
accessModes:
- ReadWriteMany
resources:
requests:
storage: 10Gi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment