Mercurial > code > home > repos > sco-bot
diff k8s/volumes.yaml @ 16:7a87ba2f00d9
reformat, fix some types, make more async
author | drewp@bigasterisk.com |
---|---|
date | Fri, 19 Jul 2024 00:49:38 -0700 |
parents | 6ed25bcaaf1f |
children |
line wrap: on
line diff
--- a/k8s/volumes.yaml Fri Jul 19 00:30:47 2024 -0700 +++ b/k8s/volumes.yaml Fri Jul 19 00:49:38 2024 -0700 @@ -1,22 +1,21 @@ - apiVersion: v1 kind: PersistentVolume metadata: name: sco-bot-data - labels: {type: local} + labels: { type: local } spec: storageClassName: manual - hostPath: {path: "/my/serv/sco-bot/data"} - capacity: {storage: 5Mi} + hostPath: { path: "/my/serv/sco-bot/data" } + capacity: { storage: 5Mi } accessModes: ["ReadWriteMany"] persistentVolumeReclaimPolicy: Retain - claimRef: {namespace: default, name: sco-bot-data} + claimRef: { namespace: default, name: sco-bot-data } --- apiVersion: v1 kind: PersistentVolumeClaim -metadata: {name: sco-bot-data} +metadata: { name: sco-bot-data } spec: storageClassName: "" volumeName: "sco-bot-data" accessModes: ["ReadWriteMany"] - resources: { requests: { storage: 5Mi } } \ No newline at end of file + resources: { requests: { storage: 5Mi } }