summaryrefslogtreecommitdiff
path: root/f3s/apache/helm-chart/templates/apache-persistent-volume.yaml
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-01-27 21:00:12 +0200
committerPaul Buetow <paul@buetow.org>2026-01-27 21:00:12 +0200
commit94c0db2c8badc141ed9f35ade9f5f47bad8b3fc7 (patch)
tree1562dbceb91a2eb92090389c0d04e33e42966eda /f3s/apache/helm-chart/templates/apache-persistent-volume.yaml
parent55a69e2dd06523cf7f466fd21e4e14c04ac3a3e8 (diff)
add apache
Diffstat (limited to 'f3s/apache/helm-chart/templates/apache-persistent-volume.yaml')
-rw-r--r--f3s/apache/helm-chart/templates/apache-persistent-volume.yaml28
1 files changed, 28 insertions, 0 deletions
diff --git a/f3s/apache/helm-chart/templates/apache-persistent-volume.yaml b/f3s/apache/helm-chart/templates/apache-persistent-volume.yaml
new file mode 100644
index 0000000..b04c06f
--- /dev/null
+++ b/f3s/apache/helm-chart/templates/apache-persistent-volume.yaml
@@ -0,0 +1,28 @@
+apiVersion: v1
+kind: PersistentVolume
+metadata:
+ name: apache-pv
+spec:
+ capacity:
+ storage: 1Gi
+ volumeMode: Filesystem
+ accessModes:
+ - ReadWriteMany
+ persistentVolumeReclaimPolicy: Retain
+ hostPath:
+ path: /data/nfs/k3svolumes/apache
+ type: Directory
+---
+apiVersion: v1
+kind: PersistentVolumeClaim
+metadata:
+ name: apache-pvc
+ namespace: test
+spec:
+ storageClassName: ""
+ volumeName: apache-pv
+ accessModes:
+ - ReadWriteMany
+ resources:
+ requests:
+ storage: 1Gi