Mercurial > code > home > repos > sco-bot
view k8s/volumes.yaml @ 18:a527228aa353 default tip
prefect use postgres
author | drewp@bigasterisk.com |
---|---|
date | Fri, 19 Jul 2024 21:01:09 -0700 |
parents | 7a87ba2f00d9 |
children |
line wrap: on
line source
apiVersion: v1 kind: PersistentVolume metadata: name: sco-bot-data labels: { type: local } spec: storageClassName: manual hostPath: { path: "/my/serv/sco-bot/data" } capacity: { storage: 5Mi } accessModes: ["ReadWriteMany"] persistentVolumeReclaimPolicy: Retain claimRef: { namespace: default, name: sco-bot-data } --- apiVersion: v1 kind: PersistentVolumeClaim metadata: { name: sco-bot-data } spec: storageClassName: "" volumeName: "sco-bot-data" accessModes: ["ReadWriteMany"] resources: { requests: { storage: 5Mi } }