Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ aliases:

* BUGFIX: [converter](https://docs.victoriametrics.com/operator/integrations/prometheus/#objects-conversion): disable all prometheus controllers if CRD group was not found. See [#2838](https://github.com/VictoriaMetrics/helm-charts/issues/2838).
* BUGFIX: [vmdistributed](https://docs.victoriametrics.com/operator/resources/vmdistributed/): change default load balancing policy for write requests from `first_available` to `least_loaded`. This should allow to evenly distribute write load across all VMAgents.
* BUGFIX: [vmalertmanagerconfig](https://docs.victoriametrics.com/operator/resources/vmalertmanagerconfig/): fix previously ignored negative values in VMAlertmanagerConfig. See [#2132](https://github.com/VictoriaMetrics/operator/issues/2132).

## [v0.69.0](https://github.com/VictoriaMetrics/operator/releases/tag/v0.69.0)
**Release date:** 22 April 2026
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,19 +246,19 @@ func (r *rawValue) set(k string, v any) {
r.items = append(r.items, yaml.MapItem{Key: k, Value: item})
}
case int:
if item > 0 {
if item != 0 {
r.items = append(r.items, yaml.MapItem{Key: k, Value: item})
}
case int32:
if item > 0 {
if item != 0 {
r.items = append(r.items, yaml.MapItem{Key: k, Value: item})
}
case int64:
if item > 0 {
if item != 0 {
r.items = append(r.items, yaml.MapItem{Key: k, Value: item})
}
case float64:
if item > 0 {
if item != 0 {
r.items = append(r.items, yaml.MapItem{Key: k, Value: item})
}
case bool:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ templates: []
TelegramConfigs: []vmv1beta1.TelegramConfig{
{
SendResolved: ptr.To(true),
ChatID: 125,
ChatID: -1123123123125,
BotToken: &corev1.SecretKeySelector{
LocalObjectReference: corev1.LocalObjectReference{
Name: "tg-secret",
Expand Down Expand Up @@ -975,7 +975,7 @@ receivers:
telegram_configs:
- bot_token: some-token
send_resolved: true
chat_id: 125
chat_id: -1123123123125
message: some-templated message
templates: []
`,
Expand Down
Loading