From 1e8b8a5cf2f60a82318401111fb6a572fe24453c Mon Sep 17 00:00:00 2001 From: Jim Nicholson Date: Sun, 20 Feb 2022 17:41:48 -0800 Subject: [PATCH] Remove for now, conflicts abound --- applications/storage/kustomization.yaml | 4 --- applications/storage/truenas-nfs.yaml | 34 ------------------------- 2 files changed, 38 deletions(-) delete mode 100644 applications/storage/kustomization.yaml delete mode 100644 applications/storage/truenas-nfs.yaml diff --git a/applications/storage/kustomization.yaml b/applications/storage/kustomization.yaml deleted file mode 100644 index 2c84482..0000000 --- a/applications/storage/kustomization.yaml +++ /dev/null @@ -1,4 +0,0 @@ -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 deleted file mode 100644 index 6261b4e..0000000 --- a/applications/storage/truenas-nfs.yaml +++ /dev/null @@ -1,34 +0,0 @@ ---- -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 ---- -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