mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-01-10 15:14:09 +00:00
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>
This commit is contained in:
parent
68e0130779
commit
b4bd1cf643
6 changed files with 60 additions and 19 deletions
|
@ -1,6 +1,18 @@
|
||||||
## Next release
|
## 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
|
- 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
|
## 0.12.2
|
||||||
|
|
||||||
|
|
|
@ -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)
|
[![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/)
|
[![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
|
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
|
## How to uninstall
|
||||||
|
|
||||||
Remove application with command.
|
Remove application with command.
|
||||||
|
@ -882,17 +904,6 @@ name: ""
|
||||||
</pre>
|
</pre>
|
||||||
</td>
|
</td>
|
||||||
<td><p>Existing secret name</p>
|
<td><p>Existing secret name</p>
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>multiTenantUrls</td>
|
|
||||||
<td>list</td>
|
|
||||||
<td><pre class="helm-vars-default-value" language-yaml" lang="plaintext">
|
|
||||||
<code class="language-yaml">[]
|
|
||||||
</code>
|
|
||||||
</pre>
|
|
||||||
</td>
|
|
||||||
<td><p>Destination multitenant endpoint for scraped/received metrics</p>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -1144,14 +1155,14 @@ periodSeconds: 15
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>remoteWriteUrls</td>
|
<td>remoteWrite</td>
|
||||||
<td>list</td>
|
<td>string</td>
|
||||||
<td><pre class="helm-vars-default-value" language-yaml" lang="plaintext">
|
<td><pre class="helm-vars-default-value" language-yaml" lang="">
|
||||||
<code class="language-yaml">[]
|
<code class="language-yaml">null
|
||||||
</code>
|
</code>
|
||||||
</pre>
|
</pre>
|
||||||
</td>
|
</td>
|
||||||
<td><p>WARN: need to specify at least one remote write url or one multi tenant url</p>
|
<td><p>Generates <code>remoteWrite.*</code> flags and config maps with value content for values, that are of type list of map. Each item should contain <code>url</code> param to pass validation.</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -2,6 +2,15 @@
|
||||||
|
|
||||||
- TODO
|
- TODO
|
||||||
|
|
||||||
|
## 0.26.0
|
||||||
|
|
||||||
|
**Release date:** 2024-09-29
|
||||||
|
|
||||||
|
![AppVersion: v1.102.1](https://img.shields.io/static/v1?label=AppVersion&message=v1.102.1&color=success&logo=)
|
||||||
|
![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
|
||||||
|
|
||||||
|
- updates operator to [v0.48.3](https://github.com/VictoriaMetrics/operator/releases/tag/v0.48.3)
|
||||||
|
|
||||||
## 0.25.17
|
## 0.25.17
|
||||||
|
|
||||||
**Release date:** 2024-09-20
|
**Release date:** 2024-09-20
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![Version: 0.25.17](https://img.shields.io/badge/Version-0.25.17-informational?style=flat-square)
|
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![Version: 0.26.0](https://img.shields.io/badge/Version-0.26.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-k8s-stack)
|
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/victoriametrics)](https://artifacthub.io/packages/helm/victoriametrics/victoria-metrics-k8s-stack)
|
||||||
|
|
||||||
Kubernetes monitoring on VictoriaMetrics stack. Includes VictoriaMetrics Operator, Grafana dashboards, ServiceScrapes and VMRules
|
Kubernetes monitoring on VictoriaMetrics stack. Includes VictoriaMetrics Operator, Grafana dashboards, ServiceScrapes and VMRules
|
||||||
|
|
|
@ -2,6 +2,15 @@
|
||||||
|
|
||||||
- TODO
|
- TODO
|
||||||
|
|
||||||
|
## 0.35.2
|
||||||
|
|
||||||
|
**Release date:** 2024-09-29
|
||||||
|
|
||||||
|
![AppVersion: v0.48.3](https://img.shields.io/static/v1?label=AppVersion&message=v0.48.3&color=success&logo=)
|
||||||
|
![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
|
||||||
|
|
||||||
|
- updates operator to [v0.48.3](https://github.com/VictoriaMetrics/operator/releases/tag/v0.48.3) version
|
||||||
|
|
||||||
## 0.35.1
|
## 0.35.1
|
||||||
|
|
||||||
**Release date:** 2024-09-26
|
**Release date:** 2024-09-26
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![Version: 0.35.1](https://img.shields.io/badge/Version-0.35.1-informational?style=flat-square)
|
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![Version: 0.35.2](https://img.shields.io/badge/Version-0.35.2-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-operator)
|
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/victoriametrics)](https://artifacthub.io/packages/helm/victoriametrics/victoria-metrics-operator)
|
||||||
|
|
||||||
Victoria Metrics Operator
|
Victoria Metrics Operator
|
||||||
|
|
Loading…
Reference in a new issue