File tree Expand file tree Collapse file tree 6 files changed +12
-3
lines changed
openstack-cloud-controller-manager Expand file tree Collapse file tree 6 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v1
2
2
appVersion : v1.30.0
3
3
description : Cinder CSI Chart for OpenStack
4
4
name : openstack-cinder-csi
5
- version : 2.30.1-alpha.1
5
+ version : 2.30.1-alpha.2
6
6
home : https://github.com/kubernetes/cloud-provider-openstack
7
7
icon : https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
8
8
maintainers :
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ kind: PodMonitor
4
4
metadata :
5
5
labels :
6
6
{{- include "cinder-csi.controllerplugin.labels" . | nindent 4 }}
7
+ {{- if .Values.csi.plugin.podMonitor.additionalLabels }}
8
+ {{- toYaml .Values.csi.plugin.podMonitor.additionalLabels | nindent 4 }}
9
+ {{- end }}
7
10
name : {{ include "cinder-csi.name" . }}-controllerplugin
8
11
namespace : {{ .Release.Namespace }}
9
12
annotations :
Original file line number Diff line number Diff line change 136
136
# See https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.PodMonitor
137
137
podMonitor :
138
138
enabled : false
139
+ additionalLabels : {}
139
140
extraArgs : {}
140
141
extraEnv : []
141
142
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description: Openstack Cloud Controller Manager Helm Chart
4
4
icon : https://object-storage-ca-ymq-1.vexxhost.net/swift/v1/6e4619c416ff4bd19e1c087f27a43eea/www-images-prod/openstack-logo/OpenStack-Logo-Vertical.png
5
5
home : https://github.com/kubernetes/cloud-provider-openstack
6
6
name : openstack-cloud-controller-manager
7
- version : 2.30.2
7
+ version : 2.30.3
8
8
maintainers :
9
9
- name : eumel8
10
10
Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ apiVersion: monitoring.coreos.com/v1
3
3
kind : ServiceMonitor
4
4
metadata :
5
5
name : {{ include "occm.name" . }}
6
- labels : {{- include "common.labels.standard" . | nindent 4 }}
6
+ labels :
7
+ {{- include "common.labels.standard" . | nindent 4 }}
8
+ {{- if .Values.serviceMonitor.additionalLabels }}
9
+ {{- toYaml .Values.serviceMonitor.additionalLabels | nindent 4 }}
10
+ {{- end }}
7
11
namespace : {{ .Release.Namespace }}
8
12
annotations :
9
13
{{- with .Values.commonAnnotations }}
Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ controllerExtraArgs: {}
86
86
serviceMonitor : {}
87
87
# serviceMonitor:
88
88
# enabled: true
89
+ # additionalLabels: {}
89
90
90
91
# Create a secret resource cloud-config (or other name) to store credentials and settings from cloudConfig
91
92
# You can also provide your own secret (not created by the Helm chart), in this case set create to false
You can’t perform that action at this time.
0 commit comments