From 612fe6738a77e0f9677328be040551819705af06 Mon Sep 17 00:00:00 2001 From: Jim Nicholson Date: Tue, 26 Dec 2023 14:10:10 -0800 Subject: [PATCH] Add new NFS-provisioned storage --- volume.yaml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/volume.yaml b/volume.yaml index 1863ac7..0f0f9b0 100644 --- a/volume.yaml +++ b/volume.yaml @@ -32,4 +32,17 @@ spec: resources: requests: storage: 5Gi - volumeName: heimdall-pv \ No newline at end of file + volumeName: heimdall-pv +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: heimdall-storage-new + namespace: heimdall +spec: + storageClassName: nfs-client + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi \ No newline at end of file