Skip to content

Commit

Permalink
Merge pull request #629 from LiliC/fix-kube_secret_labels
Browse files Browse the repository at this point in the history
jsonnet/kube-state-metrics.jsonnet: Fix blacklist arguments
  • Loading branch information
openshift-merge-robot committed Jan 24, 2020
2 parents 232623a + cf525ca commit daf7bcc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion assets/kube-state-metrics/deployment.yaml
Expand Up @@ -63,7 +63,7 @@ spec:
- --port=8081
- --telemetry-host=127.0.0.1
- --telemetry-port=8082
- --metric-blacklist="kube_secret_labels"
- --metric-blacklist=kube_secret_labels
image: quay.io/coreos/kube-state-metrics:v1.9.2
name: kube-state-metrics
resources:
Expand Down
2 changes: 1 addition & 1 deletion jsonnet/kube-state-metrics.jsonnet
Expand Up @@ -93,7 +93,7 @@ local tlsVolumeName = 'kube-state-metrics-tls';
container.withVolumeMounts([containerVolumeMount.new(tmpVolumeName, '/tmp')]) +
{
args+: [
'--metric-blacklist="kube_secret_labels"',
'--metric-blacklist=kube_secret_labels',
],
resources: {
requests: {
Expand Down
4 changes: 2 additions & 2 deletions pkg/manifests/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit daf7bcc

Please sign in to comment.