From c3bf612355eb89c8398b0902854511834ca9bc88 Mon Sep 17 00:00:00 2001 From: Jim Nicholson Date: Sun, 20 Feb 2022 17:10:56 -0800 Subject: [PATCH] Create shared pvc --- applications/storage/truenas-nfs.yaml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/applications/storage/truenas-nfs.yaml b/applications/storage/truenas-nfs.yaml index a9df174..289f50f 100644 --- a/applications/storage/truenas-nfs.yaml +++ b/applications/storage/truenas-nfs.yaml @@ -15,4 +15,19 @@ spec: nfs: server: 10.0.96.14 path: "/mnt/data/nfs" - readOnly: false \ No newline at end of file + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metaData: + name: shared-data +spec: + accessModes: + - ReadWriteMany + storageClassName: slow + resources: + requests: + storage: 11T + selector: + matchLabels: + bucket:shared \ No newline at end of file