Skip to content
Open
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- `KubePdbNotEnoughHealthyPods`
- `KubeNodePressure`
- `KubeNodeEviction`
- [#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.

## 4.18

Expand Down
4 changes: 2 additions & 2 deletions assets/kube-state-metrics/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ spec:
- |
--metric-denylist=
^kube_secret_labels$,
^kube_.+_annotations$
^kube_.+_annotations$,
^kube_customresource_.+_annotations_info$,
^kube_customresource_.+_labels_info$,
^kube_customresource_.+_labels_info$
- --metric-labels-allowlist=pods=[*],nodes=[*],namespaces=[*],persistentvolumes=[*],persistentvolumeclaims=[*],poddisruptionbudgets=[*]
- |
--metric-denylist=
Expand Down
4 changes: 2 additions & 2 deletions jsonnet/components/kube-state-metrics.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,9 @@ function(params)
|||
--metric-denylist=
^kube_secret_labels$,
^kube_.+_annotations$
^kube_.+_annotations$,
^kube_customresource_.+_annotations_info$,
^kube_customresource_.+_labels_info$,
^kube_customresource_.+_labels_info$
|||,
'--metric-labels-allowlist=pods=[*],nodes=[*],namespaces=[*],persistentvolumes=[*],persistentvolumeclaims=[*],poddisruptionbudgets=[*]',
],
Expand Down