cluster-management/applications/logging/helmfile.yaml
2024-09-03 10:22:37 -04:00

47 lines
1.1 KiB
YAML

repositories:
- name: grafana
url: https://grafana.github.io/helm-charts
- name: elastic
url: https://helm.elastic.co
releases:
- name: elasticsearch
namespace: {{ .Values.namespace | default "logging" }}
chart: elastic/elasticsearch
version: 7.17.10
values:
- values/elasticsearch-values.yaml
- ../common-config.yaml
- name: filebeat
namespace: {{ .Values.namespace | default "logging" }}
chart: elastic/filebeat
version: 7.17.10
values:
- values/filebeat-values.yaml
- ../common-config.yaml
- name: loki
namespace: {{ .Values.namespace | default "logging" }}
chart: grafana/loki
version: 5.8.3
values:
- values/loki-values.yaml
- ../common-config.yaml
- name: promtail
namespace: {{ .Values.namespace | default "logging" }}
chart: grafana/promtail
version: 6.11.3
values:
- values/promtail-values.yaml
- ../common-config.yaml
- name: grafana
namespace: {{ .Values.namespace | default "logging" }}
chart: grafana/grafana
version: 6.50.7
values:
- values/grafana-values.yaml
- ../common-config.yaml