I deployed a kube-prometheus-stack instance (Prometheus, AlertManager, Grafana) and it's running quite sometimes with data, some custom dashboards, data sources and users.
Now I want to add additionalScrapeConfigs for a newly deploy blackbox-exporter to the existing kube-prometheus-stack to extend the monitoring.
Is there anyway to update existing kube-prometheus-stack file without apply via helm chart? Cuz I'm afraid that helm upgrade new_values.yaml would wipe out all existing data, dashboards, data source and users.
I installed kube-prometheus-stack with these :
helm show values prometheus-community/kube-prometheus-stack > custome-values.yaml
helm install -f ./custome-values.yaml prometheus prometheus-community/kube-prometheus-stack -n monitoring
And deploy blackbox-exporter with this:
helm install prometheus-blackbox-exporter prometheus-community/prometheus-blackbox-exporter -n monitoring