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