summaryrefslogtreecommitdiff
path: root/data.d/k3s-master/manifests.d/jaomox/persistent-volumes.yaml
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2023-04-06 17:32:28 +0200
committerPatrick Spek <p.spek@tyil.nl>2023-04-06 17:32:28 +0200
commit323a3f2e9f0e449145217bb33c9954d924b972ff (patch)
treecdf8e5bb8dffcaf0d3c384d543f2ab494d3a3e34 /data.d/k3s-master/manifests.d/jaomox/persistent-volumes.yaml
parent4241ca519a1548eeb245ecc7f5126cc6309d90de (diff)
PVs aren't namespace scoped
Diffstat (limited to 'data.d/k3s-master/manifests.d/jaomox/persistent-volumes.yaml')
-rw-r--r--data.d/k3s-master/manifests.d/jaomox/persistent-volumes.yaml14
1 files changed, 14 insertions, 0 deletions
diff --git a/data.d/k3s-master/manifests.d/jaomox/persistent-volumes.yaml b/data.d/k3s-master/manifests.d/jaomox/persistent-volumes.yaml
new file mode 100644
index 0000000..5ee32dd
--- /dev/null
+++ b/data.d/k3s-master/manifests.d/jaomox/persistent-volumes.yaml
@@ -0,0 +1,14 @@
+---
+apiVersion: v1
+kind: PersistentVolume
+metadata:
+ name: minio-data
+spec:
+ storageClassName: local-path
+ capacity:
+ storage: 50Gi
+ accessModes:
+ - ReadWriteOnce
+ hostPath:
+ path: /srv/personal-services/minio-data
+...