summaryrefslogtreecommitdiffstats
path: root/clover/spinnaker/install/minio-pv.yml
blob: 6b5507dfe39fe689da1c8e16609a9defbceaae69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
kind: PersistentVolume
apiVersion: v1
metadata:
  name: minio-pv-volume
  labels:
    type: local
spec:
  storageClassName: standard
  capacity:
    storage: 10Gi
  accessModes:
    - ReadWriteOnce
  hostPath:
    path: "/mnt/minio"