You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
233 B
YAML
15 lines
233 B
YAML
3 years ago
|
kind: PersistentVolume
|
||
|
apiVersion: v1
|
||
|
metadata:
|
||
|
name: mongodb-pv-volume
|
||
|
labels:
|
||
|
type: local
|
||
|
spec:
|
||
|
storageClassName: manual
|
||
|
capacity:
|
||
|
storage: 100Mi
|
||
|
accessModes:
|
||
|
- ReadWriteOnce
|
||
|
hostPath:
|
||
|
path: /mnt/data
|