diff --git a/README.md b/README.md index ba068fc..13024db 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,19 @@ and add the entry to `/etc/hosts`: we can now install the helm chart ``` +$ helm dependency build $ helm install -f values.yaml -n monitoring prom-loki . ``` +## TODO + +- [ ] tls +- [ ] alertmanager on irc + +## RESOURCES + +`values.yml` reference for sub charts: +- [prometheus](https://github.com/prometheus-community/helm-charts/blob/main/charts/prometheus/values.yaml) +- [grafana](https://github.com/grafana/helm-charts/blob/main/charts/grafana/values.yaml) +- [loki](https://github.com/grafana/helm-charts/blob/main/charts/loki/values.yaml) + diff --git a/values.yaml b/values.yaml index 6ec1143..1c8d403 100644 --- a/values.yaml +++ b/values.yaml @@ -1,11 +1,25 @@ +prometheus: + enabled: true + + alertmanager: + enabled: true + # baseURL: "http://localhost:9093" + # configFileName: alertmanager.yml + + # alertmanagerFiles: + # alertmanager.yml: + # receivers: + # - name: default-receiver + loki: enabled: true grafana: enabled: true - # TODO change this + # TODO user existing secret instead + adminUser: admin adminPassword: prom-operator ingress: @@ -16,9 +30,10 @@ grafana: pathType: Prefix hosts: - grafana.ing - -prometheus: - enabled: true + + sidecar: + datasources: + enabled: true filebeat: enabled: true