mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-01 14:47:38 +00:00
Automatic update helm docs from VictoriaMetrics/helm-charts@a5bc12b (#7685)
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
ae673e8b34
commit
19589fdeb1
10 changed files with 127 additions and 5 deletions
|
@ -1,6 +1,27 @@
|
|||
## Next release
|
||||
|
||||
- TODO
|
||||
|
||||
## 0.8.5
|
||||
|
||||
**Release date:** 2024-11-27
|
||||
|
||||
![AppVersion: v1.0.0](https://img.shields.io/static/v1?label=AppVersion&message=v1.0.0&color=success&logo=)
|
||||
![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
|
||||
|
||||
- Added `vector.customConfigNamespace` to force Vector configmap creation in a given namespace even if vector.enabled: false
|
||||
- Added `service.targetPort` and `serviceMonitor.targetPort` to add ability to point service to one of extraContainers port, like oauth2-proxy
|
||||
|
||||
## 0.8.4
|
||||
|
||||
**Release date:** 2024-11-26
|
||||
|
||||
![AppVersion: v1.0.0](https://img.shields.io/static/v1?label=AppVersion&message=v1.0.0&color=success&logo=)
|
||||
![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
|
||||
|
||||
- updated common dependency 0.0.31 -> 0.0.32
|
||||
- synced rules and dashboards
|
||||
- added .Values.dashboards.namespace to override default namespace for dashboards
|
||||
|
||||
## 0.8.3
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
![Version: 0.8.3](https://img.shields.io/badge/Version-0.8.3-informational?style=flat-square)
|
||||
![Version: 0.8.5](https://img.shields.io/badge/Version-0.8.5-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-logs-single)
|
||||
[![Slack](https://img.shields.io/badge/join%20slack-%23victoriametrics-brightgreen.svg)](https://slack.victoriametrics.com/)
|
||||
|
||||
|
@ -204,6 +204,17 @@ Change the values according to the need of the environment in ``victoria-logs-si
|
|||
</pre>
|
||||
</td>
|
||||
<td><p>Dashboard labels</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>dashboards.namespace</td>
|
||||
<td>string</td>
|
||||
<td><pre class="helm-vars-default-value" language-yaml" lang="">
|
||||
<code class="language-yaml">""
|
||||
</code>
|
||||
</pre>
|
||||
</td>
|
||||
<td><p>Override default namespace, where to create dashboards</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -986,6 +997,17 @@ readOnlyRootFilesystem: true
|
|||
</pre>
|
||||
</td>
|
||||
<td><p>Service port</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>server.service.targetPort</td>
|
||||
<td>string</td>
|
||||
<td><pre class="helm-vars-default-value" language-yaml" lang="">
|
||||
<code class="language-yaml">http
|
||||
</code>
|
||||
</pre>
|
||||
</td>
|
||||
<td><p>Target port</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -1063,6 +1085,17 @@ readOnlyRootFilesystem: true
|
|||
</pre>
|
||||
</td>
|
||||
<td><p>Service Monitor relabelings</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>server.serviceMonitor.targetPort</td>
|
||||
<td>string</td>
|
||||
<td><pre class="helm-vars-default-value" language-yaml" lang="">
|
||||
<code class="language-yaml">http
|
||||
</code>
|
||||
</pre>
|
||||
</td>
|
||||
<td><p>Service Monitor target port</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -1130,7 +1163,7 @@ readOnlyRootFilesystem: true
|
|||
protocol: TCP
|
||||
customConfig:
|
||||
api:
|
||||
address: 127.0.0.1:8686
|
||||
address: 0.0.0.0:8686
|
||||
enabled: false
|
||||
playground: true
|
||||
data_dir: /vector-data-dir
|
||||
|
@ -1170,6 +1203,7 @@ customConfig:
|
|||
.log = parse_json(.message) ?? .message
|
||||
del(.message)
|
||||
type: remap
|
||||
customConfigNamespace: ""
|
||||
dataDir: /vector-data-dir
|
||||
enabled: false
|
||||
existingConfigMaps:
|
||||
|
@ -1184,6 +1218,17 @@ service:
|
|||
</pre>
|
||||
</td>
|
||||
<td><p>Values for <a href="https://github.com/vectordotdev/helm-charts/tree/develop/charts/vector" target="_blank">vector helm chart</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>vector.customConfigNamespace</td>
|
||||
<td>string</td>
|
||||
<td><pre class="helm-vars-default-value" language-yaml" lang="">
|
||||
<code class="language-yaml">""
|
||||
</code>
|
||||
</pre>
|
||||
</td>
|
||||
<td><p>Forces custom configuration creation in a given namespace even if vector.enabled is false</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
## Next release
|
||||
|
||||
- updated common dependency 0.0.31 -> 0.0.32
|
||||
- Added service.targetPort and serviceMonitor.targetPort to add ability to point service to one of extraContainers port, like oauth2-proxy
|
||||
|
||||
## 0.14.9
|
||||
|
||||
|
|
|
@ -1341,6 +1341,17 @@ periodSeconds: 15
|
|||
</pre>
|
||||
</td>
|
||||
<td><p>Service port</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>service.targetPort</td>
|
||||
<td>string</td>
|
||||
<td><pre class="helm-vars-default-value" language-yaml" lang="">
|
||||
<code class="language-yaml">http
|
||||
</code>
|
||||
</pre>
|
||||
</td>
|
||||
<td><p>Target port</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -1451,6 +1462,17 @@ periodSeconds: 15
|
|||
</pre>
|
||||
</td>
|
||||
<td><p>Service Monitor relabelings</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>serviceMonitor.targetPort</td>
|
||||
<td>string</td>
|
||||
<td><pre class="helm-vars-default-value" language-yaml" lang="">
|
||||
<code class="language-yaml">http
|
||||
</code>
|
||||
</pre>
|
||||
</td>
|
||||
<td><p>Service Monitor targetPort</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
@ -741,7 +741,7 @@ tag: v0.25.0
|
|||
<td>alertmanager.service.servicePort</td>
|
||||
<td>int</td>
|
||||
<td><pre class="helm-vars-default-value" language-yaml" lang="">
|
||||
<code class="language-yaml">8880
|
||||
<code class="language-yaml">9093
|
||||
</code>
|
||||
</pre>
|
||||
</td>
|
||||
|
|
|
@ -1,5 +1,15 @@
|
|||
## Next release
|
||||
|
||||
- TODO
|
||||
|
||||
## 1.6.8
|
||||
|
||||
**Release date:** 2024-11-27
|
||||
|
||||
![AppVersion: v1.18.5](https://img.shields.io/static/v1?label=AppVersion&message=v1.18.5&color=success&logo=)
|
||||
![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
|
||||
|
||||
- Upgraded ['vmanomaly`](https://docs.victoriametrics.com/anomaly-detection/) to [1.18.5](https://docs.victoriametrics.com/anomaly-detection/changelog/#v1185).
|
||||
- updated common dependency 0.0.28 -> 0.0.32
|
||||
- fixed app.kubernetes.io/version tag override if custom tag is set. See [this issue](https://github.com/VictoriaMetrics/helm-charts/issues/1766).
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
![Version: 1.6.7](https://img.shields.io/badge/Version-1.6.7-informational?style=flat-square)
|
||||
![Version: 1.6.8](https://img.shields.io/badge/Version-1.6.8-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-anomaly)
|
||||
[![Slack](https://img.shields.io/badge/join%20slack-%23victoriametrics-brightgreen.svg)](https://slack.victoriametrics.com/)
|
||||
[![GitHub license](https://img.shields.io/github/license/VictoriaMetrics/VictoriaMetrics.svg)](https://github.com/VictoriaMetrics/helm-charts/blob/master/LICENSE)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
## Next release
|
||||
|
||||
- TODO
|
||||
- synced rules
|
||||
|
||||
## 0.29.1
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
- updated common dependency 0.0.28 -> 0.0.32
|
||||
- fixed app.kubernetes.io/version tag override if custom tag is set. See [this issue](https://github.com/VictoriaMetrics/helm-charts/issues/1766).
|
||||
- Added service.targetPort and serviceMonitor.targetPort to add ability to point service to one of extraContainers port, like oauth2-proxy
|
||||
|
||||
## 0.12.7
|
||||
|
||||
|
|
|
@ -1303,6 +1303,17 @@ scrape_configs:
|
|||
</pre>
|
||||
</td>
|
||||
<td><p>Service port</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>server.service.targetPort</td>
|
||||
<td>string</td>
|
||||
<td><pre class="helm-vars-default-value" language-yaml" lang="">
|
||||
<code class="language-yaml">http
|
||||
</code>
|
||||
</pre>
|
||||
</td>
|
||||
<td><p>Target port</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -1380,6 +1391,17 @@ scrape_configs:
|
|||
</pre>
|
||||
</td>
|
||||
<td><p>Service Monitor relabelings</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>server.serviceMonitor.targetPort</td>
|
||||
<td>string</td>
|
||||
<td><pre class="helm-vars-default-value" language-yaml" lang="">
|
||||
<code class="language-yaml">http
|
||||
</code>
|
||||
</pre>
|
||||
</td>
|
||||
<td><p>Service Monitor target port</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
Loading…
Reference in a new issue