awx-on-k3s/galaxy/galaxy/pv.yaml
2024-03-03 01:08:30 +09:00

44 lines
827 B
YAML

---
apiVersion: v1
kind: PersistentVolume
metadata:
name: galaxy-postgres-13-volume
spec:
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
capacity:
storage: 8Gi
storageClassName: galaxy-postgres-volume
hostPath:
path: /data/galaxy/postgres-13
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: galaxy-file-volume
spec:
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
capacity:
storage: 8Gi
storageClassName: galaxy-file-volume
hostPath:
path: /data/galaxy/file
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: galaxy-redis-volume
spec:
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
capacity:
storage: 1Gi
storageClassName: galaxy-redis-volume
hostPath:
path: /data/galaxy/redis