Skip to content

Commit e3f7168

Browse files
Merge pull request #2677 from rexagod/MON-4376
OCPBUGS-62310: Fix KSM deny-list typo
2 parents e21488a + 6d0ee7e commit e3f7168

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- `KubePdbNotEnoughHealthyPods`
88
- `KubeNodePressure`
99
- `KubeNodeEviction`
10+
- [#2677](https://github.com/openshift/cluster-monitoring-operator/pull/2677) Fix KSM deny-list typo that put `^kube_.+_annotations$^kube_customresource_.+_annotations_info$,` in the deny-list instead of seperate entries, like so, `^kube_.+_annotations$,^kube_customresource_.+_annotations_info$,`, due to the omission of a comma.
1011

1112
## 4.18
1213

assets/kube-state-metrics/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ spec:
4040
- |
4141
--metric-denylist=
4242
^kube_secret_labels$,
43-
^kube_.+_annotations$
43+
^kube_.+_annotations$,
4444
^kube_customresource_.+_annotations_info$,
45-
^kube_customresource_.+_labels_info$,
45+
^kube_customresource_.+_labels_info$
4646
- --metric-labels-allowlist=pods=[*],nodes=[*],namespaces=[*],persistentvolumes=[*],persistentvolumeclaims=[*],poddisruptionbudgets=[*]
4747
- |
4848
--metric-denylist=

jsonnet/components/kube-state-metrics.libsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,9 @@ function(params)
241241
|||
242242
--metric-denylist=
243243
^kube_secret_labels$,
244-
^kube_.+_annotations$
244+
^kube_.+_annotations$,
245245
^kube_customresource_.+_annotations_info$,
246-
^kube_customresource_.+_labels_info$,
246+
^kube_customresource_.+_labels_info$
247247
|||,
248248
'--metric-labels-allowlist=pods=[*],nodes=[*],namespaces=[*],persistentvolumes=[*],persistentvolumeclaims=[*],poddisruptionbudgets=[*]',
249249
],

0 commit comments

Comments
 (0)