about summary refs log tree commit diff
path: root/tools/monitoring/templates
diff options
context:
space:
mode:
authormakefunstuff <[email protected]>2024-06-28 21:49:42 +0200
committermakefunstuff <[email protected]>2024-06-28 21:49:42 +0200
commit8c4a3ae4c40d3b08b153f6143c69d6320e8d0286 (patch)
treed4e2dfd0385d5229814c93ea315f36dc45dc693e /tools/monitoring/templates
parentb1f8aa3b4b182c002c34d3b45942e18fde5d654f (diff)
downloadk3s-lab-8c4a3ae4c40d3b08b153f6143c69d6320e8d0286.tar.gz
trying to split to separate applications and use applicationset instead
Diffstat (limited to 'tools/monitoring/templates')
-rw-r--r--tools/monitoring/templates/pvc.yaml32
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/monitoring/templates/pvc.yaml b/tools/monitoring/templates/pvc.yaml
deleted file mode 100644
index ddf7aa7..0000000
--- a/tools/monitoring/templates/pvc.yaml
+++ /dev/null
@@ -1,32 +0,0 @@
-apiVersion: v1
-kind: PersistentVolumeClaim
-metadata:
-  name: elasticsearch-master
-  labels:
-    app: elasticsearch
-    role: master
-spec:
-  accessModes:
-    - ReadWriteOnce
-  resources:
-    requests:
-      storage: 30Gi
-  storageClassName: standard 
-
----
-
-apiVersion: v1
-kind: PersistentVolumeClaim
-metadata:
-  name: elasticsearch-data
-  labels:
-    app: elasticsearch
-    role: data
-spec:
-  accessModes:
-    - ReadWriteOnce
-  resources:
-    requests:
-      storage: 30Gi
-  storageClassName: standard
-