Advertisement
mitrakov

Persistent Volume for Postgres

May 17th, 2020
1,262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.53 KB | None | 0 0
  1. kind: PersistentVolume
  2. apiVersion: v1
  3. metadata:
  4.   name: postgres-pv-volume
  5.   namespace: tomsther
  6.   labels:
  7.     type: local
  8.     app: postgres-label
  9. spec:
  10.   storageClassName: manual
  11.   capacity:
  12.     storage: 5Gi
  13.   accessModes:
  14.    - ReadWriteMany
  15.   hostPath:
  16.     path: "/mnt/psqldata"
  17. ---
  18. kind: PersistentVolumeClaim
  19. apiVersion: v1
  20. metadata:
  21.   name: postgres-pv-claim
  22.   labels:
  23.     app: postgres-label
  24. spec:
  25.   storageClassName: manual
  26.   accessModes:
  27.    - ReadWriteMany
  28.   resources:
  29.     requests:
  30.       storage: 5Gi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement