apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: hommer-pv
|
|
labels:
|
|
type: local
|
|
spec:
|
|
capacity:
|
|
storage: 1Gi
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
persistentVolumeReclaimPolicy: Retain
|
|
storageClassName: manual
|
|
hostPath:
|
|
path: "/home/ubuntu/hommer/assets"
|
|
|