diff --git a/applications/storage/kustomization.yaml b/applications/storage/kustomization.yaml new file mode 100644 index 0000000..2c84482 --- /dev/null +++ b/applications/storage/kustomization.yaml @@ -0,0 +1,4 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +resources: +- truenas-nfs.yaml diff --git a/applications/storage/truenas-nfs.yaml b/applications/storage/truenas-nfs.yaml new file mode 100644 index 0000000..83844c3 --- /dev/null +++ b/applications/storage/truenas-nfs.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: kube-storage-nfs + labels: + bucket: shared +spec: + capacity: + storage: 11T + volumeMode: Filesystem + storageClassName: slow + persistentVolumeReclaimPolicy: Retain + accessModes: + - ReadWriteMany + nfs: + server: 10.0.96.14 + path: "/mnt/data/nfs" + readOnly: false \ No newline at end of file