From b4bd1cf6437fe58d305e65f2467c1c14f0c9a268 Mon Sep 17 00:00:00 2001 From: Github Actions <133988544+victoriametrics-bot@users.noreply.github.com> Date: Mon, 30 Sep 2024 08:03:15 +0300 Subject: [PATCH] Automatic update helm docs from VictoriaMetrics/helm-charts@de4356f (#7138) 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: f41gh7 <18450869+f41gh7@users.noreply.github.com> --- docs/helm/victoria-metrics-agent/CHANGELOG.md | 12 +++++ docs/helm/victoria-metrics-agent/README.md | 45 ++++++++++++------- .../victoria-metrics-k8s-stack/CHANGELOG.md | 9 ++++ .../helm/victoria-metrics-k8s-stack/README.md | 2 +- .../victoria-metrics-operator/CHANGELOG.md | 9 ++++ docs/helm/victoria-metrics-operator/README.md | 2 +- 6 files changed, 60 insertions(+), 19 deletions(-) diff --git a/docs/helm/victoria-metrics-agent/CHANGELOG.md b/docs/helm/victoria-metrics-agent/CHANGELOG.md index 4eaa638a3..f5670ce57 100644 --- a/docs/helm/victoria-metrics-agent/CHANGELOG.md +++ b/docs/helm/victoria-metrics-agent/CHANGELOG.md @@ -1,6 +1,18 @@ ## Next release +- TODO + +## 0.13.0 + +**Release date:** 2024-09-27 + +![AppVersion: v1.103.0](https://img.shields.io/static/v1?label=AppVersion&message=v1.103.0&color=success&logo=) +![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm) + +**Update note**: `remoteWriteUrls` and `multiTenantUrls` parameters were replaced by `remoteWrite`. Please follow [upgrade guide](./README.md#upgrade-to-0130) + - Fail if no remoteWriteUrls set +- Added `remoteWrite` array param, which can contain all `remoteWrite.*` flag values. Please check chart docs for details. ## 0.12.2 diff --git a/docs/helm/victoria-metrics-agent/README.md b/docs/helm/victoria-metrics-agent/README.md index 3d71e22f1..a8016a64b 100644 --- a/docs/helm/victoria-metrics-agent/README.md +++ b/docs/helm/victoria-metrics-agent/README.md @@ -1,4 +1,4 @@ -![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![Version: 0.12.2](https://img.shields.io/badge/Version-0.12.2-informational?style=flat-square) +![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![Version: 0.13.0](https://img.shields.io/badge/Version-0.13.0-informational?style=flat-square) [![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/victoriametrics)](https://artifacthub.io/packages/helm/victoriametrics/victoria-metrics-agent) [![Slack](https://img.shields.io/badge/join%20slack-%23victoriametrics-brightgreen.svg)](https://slack.victoriametrics.com/) @@ -90,6 +90,28 @@ See the history of versions of `vma` application with command. helm history vma -n NAMESPACE ``` +## Upgrade guide + +### Upgrade to 0.13.0 + +- replace `remoteWriteUrls` to `remoteWrite`: + +Given below config + +```yaml +remoteWriteUrls: +- http://address1/api/v1/write +- http://address2/api/v1/write +``` + +should be changed to + +```yaml +remoteWrite: +- url: http://address1/api/v1/write +- url: http://address2/api/v1/write +``` + ## How to uninstall Remove application with command. @@ -882,17 +904,6 @@ name: ""
Existing secret name
-
-[]
-
-
-Destination multitenant endpoint for scraped/received metrics
-[]
+ remoteWrite
+ string
+
+null
- WARN: need to specify at least one remote write url or one multi tenant url
+ Generates remoteWrite.*
flags and config maps with value content for values, that are of type list of map. Each item should contain url
param to pass validation.