awx_postgres_pv.yml 253 B

123456789101112131415
  1. apiVersion: v1
  2. kind: PersistentVolume
  3. metadata:
  4. name: awx-postgres-pv
  5. namespace: awx
  6. labels:
  7. type: local
  8. spec:
  9. storageClassName: nfs-client
  10. capacity:
  11. storage: 10Gi
  12. accessModes:
  13. - ReadWriteOnce
  14. hostPath:
  15. path: "/var/nfs_awx"