zeritti

Results 31 comments of zeritti

You can specify the desired chart version with `helm`, e.g. ``` helm upgrade prometheus -n monitoring -f prom-v1.yaml \ prometheus-community/kube-prometheus-stack --version 23.1.0 --debug ``` If the version is not set,...

A quick, but not the only, way would be using values' field `prometheusSpec.secrets` [0] to obtain a mount of the secret's key's value at `/etc/prometheus/secrets/SECRET_NAME/KEY` in the Prometheus container. You...

Yes, there is. You can add external targets to the configuration via `additionalScrapeConfigs` in you values file. For example, ``` prometheus: prometheusSpec: additionalScrapeConfigs: - job_name: 'WMI_Exporter' scrape_interval: 5s scrape_timeout: 5s...

As far as I know, `promtool check config` does not understand web config's scheme. You'd need to use `promtool check web-config` against a web config file but this argument has...

>> Every query about the metrics kube_deployment_status_replicas must send the real value from the node associated with the deployment. Kube-state-metrics exposes two labels in `kube_deployment_status_replicas`: `namespace` and `deployment`. Any other...

Container's `securityContext` for both create and patch container can be set through values ``` prometheusOperator: admissionWebhooks: createSecretJob: securityContext: {} patchWebhookJob: securityContext: {} ``` Introduced in kube-prometheus-stack-39.11.0.

> I'm having the same issue, I don't really know how to manage my monitoring dashboards with this chart, > > Perhaps, we can add a value to add dashboard...

> When adding Grafana [additionalDataSources](https://github.com/prometheus-community/helm-charts/blob/7d1bd03d93b2af5bfcb5dcea6b81ac3e37770f65/charts/kube-prometheus-stack/values.yaml#L1031), the sources are added and configured as expected once checked from the UI except for the basicAuthPassword which is not picked up at all (shown...

A couple of points: > {{ define "sns.default.subject" }}{{ .Annotations.description }}{{ end }} This won't work as the `Data` object does not contain `Annotations` which is present only in the...

Thank you, @arahja, for your PR. Adding another port in the service would indeed work but would also be a workaround only (and thereby would service allow setting three ports...