diff options
author | makefunstuff <[email protected]> | 2024-06-28 21:49:42 +0200 |
---|---|---|
committer | makefunstuff <[email protected]> | 2024-06-28 21:49:42 +0200 |
commit | 8c4a3ae4c40d3b08b153f6143c69d6320e8d0286 (patch) | |
tree | d4e2dfd0385d5229814c93ea315f36dc45dc693e /tools/monitoring/templates | |
parent | b1f8aa3b4b182c002c34d3b45942e18fde5d654f (diff) | |
download | k3s-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.yaml | 32 |
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 - |