Skip to content

Commit

Permalink
[stable/kube-state-metrics] Version bump to 1.9.5 (#20915)
Browse files Browse the repository at this point in the history
Fixes also volumeattachments typo found by @mbarrien

Signed-off-by: Manuel Rüger <manuel@rueg.eu>
  • Loading branch information
mrueg committed Apr 25, 2021
1 parent 578e660 commit 1dc3f8a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions charts/kube-state-metrics/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ keywords:
- monitoring
- prometheus
- kubernetes
version: 2.7.0
appVersion: 1.9.4
version: 2.7.1
appVersion: 1.9.5
home: https://github.com/kubernetes/kube-state-metrics/
sources:
- https://github.com/kubernetes/kube-state-metrics/
Expand Down
4 changes: 2 additions & 2 deletions charts/kube-state-metrics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ $ helm install stable/kube-state-metrics
| Parameter | Description | Default |
|:---------------------------------------------|:--------------------------------------------------------------------------------------|:-------------------------------------------|
| `image.repository` | The image repository to pull from | quay.io/coreos/kube-state-metrics |
| `image.tag` | The image tag to pull from | `v1.9.4` |
| `image.tag` | The image tag to pull from | `v1.9.5` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `replicas` | Number of replicas | `1` |
| `autosharding.enabled` | Set to `true` to automatically shard data across `replicas` pods. EXPERIMENTAL | `false` |
Expand Down Expand Up @@ -65,7 +65,7 @@ $ helm install stable/kube-state-metrics
| `collectors.storageclasses` | Enable the storageclasses collector. | `true` |
| `collectors.validatingwebhookconfigurations` | Enable the validatingwebhookconfigurations collector. | `false` |
| `collectors.verticalpodautoscalers` | Enable the verticalpodautoscalers collector. | `false` |
| `collectors.volumeattachements` | Enable the volumeattachments collector. | `false` |
| `collectors.volumeattachments` | Enable the volumeattachments collector. | `false` |
| `prometheus.monitor.enabled` | Set this to `true` to create ServiceMonitor for Prometheus operator | `false` |
| `prometheus.monitor.additionalLabels` | Additional labels that can be used so ServiceMonitor will be discovered by Prometheus | `{}` |
| `prometheus.monitor.namespace` | Namespace where servicemonitor resource should be created | `the same namespace as kube-state-metrics` |
Expand Down
2 changes: 1 addition & 1 deletion charts/kube-state-metrics/templates/clusterrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ rules:
- validatingwebhookconfigurations
verbs: ["list", "watch"]
{{ end -}}
{{ if .Values.collectors.volumeattachements }}
{{ if .Values.collectors.volumeattachments }}
- apiGroups: ["storageclasses.k8s.io"]
resources:
- storageclasses
Expand Down
4 changes: 2 additions & 2 deletions charts/kube-state-metrics/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ spec:
{{ if .Values.collectors.verticalpodautoscalers }}
- --collectors=verticalpodautoscalers
{{ end }}
{{ if .Values.collectors.volumeattachements }}
- --collectors=volumeattachements
{{ if .Values.collectors.volumeattachments }}
- --collectors=volumeattachments
{{ end }}
{{ if .Values.namespace }}
- --namespace={{ .Values.namespace }}
Expand Down
4 changes: 2 additions & 2 deletions charts/kube-state-metrics/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
prometheusScrape: true
image:
repository: quay.io/coreos/kube-state-metrics
tag: v1.9.4
tag: v1.9.5
pullPolicy: IfNotPresent

# If set to true, this will deploy kube-state-metrics as a StatefulSet and the data
Expand Down Expand Up @@ -116,7 +116,7 @@ collectors:
storageclasses: true
validatingwebhookconfigurations: false
verticalpodautoscalers: false
volumeattachements: false
volumeattachments: false

# Namespace to be enabled for collecting resources. By default all namespaces are collected.
# namespace: ""
Expand Down

0 comments on commit 1dc3f8a

Please sign in to comment.