mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-03-11 15:34:56 +00:00
Automatic update helm docs from VictoriaMetrics/helm-charts@1e789d9 (#7307)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Signed-off-by: Github Actions <133988544+victoriametrics-bot@users.noreply.github.com> Co-authored-by: AndrewChubatiuk <3162380+AndrewChubatiuk@users.noreply.github.com>
This commit is contained in:
parent
a1882a84fb
commit
1cb32ee6c8
6 changed files with 80 additions and 4 deletions
|
@ -2,6 +2,24 @@
|
|||
|
||||
- TODO
|
||||
|
||||
## 1.6.1
|
||||
|
||||
**Release date:** 2024-10-18
|
||||
|
||||

|
||||

|
||||
|
||||
- Upgraded [`vmanomaly`](https://docs.victoriametrics.com/anomaly-detection/) to [1.17.1](https://docs.victoriametrics.com/anomaly-detection/changelog/#v1171)
|
||||
|
||||
## 1.6.0
|
||||
|
||||
**Release date:** 2024-10-17
|
||||
|
||||

|
||||

|
||||
|
||||
- Upgraded [`vmanomaly`](https://docs.victoriametrics.com/anomaly-detection/) to [1.17.0](https://docs.victoriametrics.com/anomaly-detection/changelog/#v1170)
|
||||
|
||||
## 1.5.2
|
||||
|
||||
**Release date:** 2024-10-11
|
||||
|
@ -18,7 +36,7 @@
|
|||

|
||||

|
||||
|
||||
- upgraded common chart dependency
|
||||
- Upgraded common chart dependency
|
||||
|
||||
## 1.5.0
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||

|
||||

|
||||
[](https://artifacthub.io/packages/helm/victoriametrics/victoria-metrics-anomaly)
|
||||
[](https://slack.victoriametrics.com/)
|
||||
[](https://github.com/VictoriaMetrics/helm-charts/blob/master/LICENSE)
|
||||
|
|
|
@ -2,6 +2,33 @@
|
|||
|
||||
- TODO
|
||||
|
||||
## 0.14.5
|
||||
|
||||
**Release date:** 2024-10-18
|
||||
|
||||

|
||||

|
||||
|
||||
- Fixed vmbackupmanager args
|
||||
|
||||
## 0.14.4
|
||||
|
||||
**Release date:** 2024-10-18
|
||||
|
||||

|
||||

|
||||
|
||||
- Fixed annotations in service account template
|
||||
|
||||
## 0.14.3
|
||||
|
||||
**Release date:** 2024-10-18
|
||||
|
||||

|
||||

|
||||
|
||||
- Fixed HPA template name
|
||||
|
||||
## 0.14.2
|
||||
|
||||
**Release date:** 2024-10-11
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
 
|
||||
 
|
||||
[](https://artifacthub.io/packages/helm/victoriametrics/victoria-metrics-cluster)
|
||||
[](https://slack.victoriametrics.com/)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
## Next release
|
||||
|
||||
- TODO
|
||||
- Add an explicit fail in case both Grafana dashboard via sidecar and `grafana.dashboards` are enabled. Previously, this configuration would be accepted and sidecar configuration would silently override `.grafana.dashboards` configuration. See [these docs](https://docs.victoriametrics.com/helm/victoriametrics-k8s-stack/#adding-external-dashboards) for information about adding external dashboards.
|
||||
|
||||
## 0.27.5
|
||||
|
||||
|
|
|
@ -112,6 +112,37 @@ This chart by default install multiple dashboards and recording rules from [kube
|
|||
you can disable dashboards with `defaultDashboardsEnabled: false` and `experimentalDashboardsEnabled: false`
|
||||
and rules can be configured under `defaultRules`
|
||||
|
||||
### Adding external dashboards
|
||||
|
||||
By default, this chart uses sidecar in order to provision default dashboards. If you want to add you own dashboards there are two ways to do it:
|
||||
|
||||
- Add dashboards by creating a ConfigMap. An example ConfigMap:
|
||||
```yaml
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
labels:
|
||||
grafana_dashboard: "1"
|
||||
name: grafana-dashboard
|
||||
data:
|
||||
dashboard.json: |-
|
||||
{...}
|
||||
```
|
||||
|
||||
- Use init container provisioning. Note that this option requires disabling sidecar and will remove all default dashboards provided with this chart. An example configuration:
|
||||
```yaml
|
||||
grafana:
|
||||
sidecar:
|
||||
dashboards:
|
||||
enabled: true
|
||||
dashboards:
|
||||
vmcluster:
|
||||
gnetId: 11176
|
||||
revision: 38
|
||||
datasource: VictoriaMetrics
|
||||
```
|
||||
When using this approach, you can find dashboards for VictoriaMetrics components published [here](https://grafana.com/orgs/victoriametrics).
|
||||
|
||||
### Prometheus scrape configs
|
||||
This chart installs multiple scrape configurations for kubernetes monitoring. They are configured under `#ServiceMonitors` section in `values.yaml` file. For example if you want to configure scrape config for `kubelet` you should set it in values.yaml like this:
|
||||
```yaml
|
||||
|
|
Loading…
Reference in a new issue