Skip to content

Commit 48769e9

Browse files
authored
internal/config: update VictoriaMetrics components to v1.130.0 (#1626)
Signed-off-by: Artem Fetishev <rtm@victoriametrics.com>
1 parent 1a30879 commit 48769e9

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

docs/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ aliases:
1313

1414
## tip
1515

16-
* Dependency: [vmoperator](https://docs.victoriametrics.com/operator/): Updated default versions for VM apps to [v1.129.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.129.0) version
16+
* Dependency: [vmoperator](https://docs.victoriametrics.com/operator/): Updated default versions for VM apps to [v1.130.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.130.0) version
1717

1818
* FEATURE: [vmoperator](https://docs.victoriametrics.com/operator/): add `VM_ENABLETCP6` variable that runs all operator CRs in IPv6 mode. See [#1581](https://github.com/VictoriaMetrics/operator/issues/1581).
1919
* FEATURE: [config-reloader](https://github.com/VictoriaMetrics/operator/blob/master/cmd/config-reloader/README.md): set default config reloader image version equal to current operator version. See [#2562](https://github.com/VictoriaMetrics/helm-charts/pull/2562).

docs/api.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1393,6 +1393,8 @@ Appears in: [TLSClientConfig](#tlsclientconfig), [TLSServerConfig](#tlsservercon
13931393
| key_secret_ref<a href="#certs-key_secret_ref" id="certs-key_secret_ref">#</a><br/>_[SecretKeySelector](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.30/#secretkeyselector-v1-core)_ | _(Optional)_<br/>Key defines reference for secret with certificate key content under given key<br />mutually exclusive with KeyFile |
13941394

13951395

1396+
1397+
13961398
#### CommonApplicationDeploymentParams
13971399

13981400

docs/env.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Environment variables |
22
| --- |
3-
| VM_METRICS_VERSION: `v1.129.0` <a href="#variables-vm-metrics-version" id="variables-vm-metrics-version">#</a> |
3+
| VM_METRICS_VERSION: `v1.130.0` <a href="#variables-vm-metrics-version" id="variables-vm-metrics-version">#</a> |
44
| VM_LOGS_VERSION: `v1.36.1` <a href="#variables-vm-logs-version" id="variables-vm-logs-version">#</a> |
55
| VM_ANOMALY_VERSION: `v1.25.2` <a href="#variables-vm-anomaly-version" id="variables-vm-anomaly-version">#</a> |
66
| VM_USECUSTOMCONFIGRELOADER: `true` <a href="#variables-vm-usecustomconfigreloader" id="variables-vm-usecustomconfigreloader">#</a><br>enables custom config reloader for vmauth and vmagent, it should speed-up config reloading process. |

internal/config/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var (
4242
//
4343
// DO NOT FORGET TO MODIFY VERSIONS IN BaseOperatorConf
4444
defaultEnvs = map[string]string{
45-
"VM_METRICS_VERSION": "v1.129.0",
45+
"VM_METRICS_VERSION": "v1.130.0",
4646
"VM_LOGS_VERSION": "v1.36.1",
4747
"VM_ANOMALY_VERSION": "v1.26.1",
4848
"VM_TRACES_VERSION": "v0.5.0",
@@ -112,7 +112,7 @@ type BaseOperatorConf struct {
112112
//
113113
// DO NOT FORGET TO MODIFY VERSIONS IN defaultEnvs
114114

115-
MetricsVersion string `default:"v1.129.0" env:"METRICS_VERSION"`
115+
MetricsVersion string `default:"v1.130.0" env:"METRICS_VERSION"`
116116
LogsVersion string `default:"v1.36.1" env:"LOGS_VERSION"`
117117
AnomalyVersion string `default:"v1.25.2" env:"ANOMALY_VERSION"`
118118

0 commit comments

Comments
 (0)