File tree Expand file tree Collapse file tree 4 files changed +26
-1
lines changed Expand file tree Collapse file tree 4 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v1
2
2
appVersion : v1.32.0
3
3
description : Manila CSI Chart for OpenStack
4
4
name : openstack-manila-csi
5
- version : 2.33.0-alpha.2
5
+ version : 2.33.0-alpha.3
6
6
home : http://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 @@ -132,6 +132,9 @@ spec:
132
132
mountPath : /runtimeconfig
133
133
readOnly : true
134
134
{{- end }}
135
+ {{- with $.Values.controllerplugin.volumeMounts }}
136
+ {{- toYaml . | nindent 12 }}
137
+ {{- end }}
135
138
resources :
136
139
{{ toYaml $.Values.controllerplugin.nodeplugin.resources | indent 12 }}
137
140
{{- end }}
@@ -155,6 +158,9 @@ spec:
155
158
hostPath :
156
159
path : /var/lib/kubelet/pods
157
160
type : Directory
161
+ {{- with .Values.controllerplugin.volumes }}
162
+ {{- toYaml . | nindent 8 }}
163
+ {{- end }}
158
164
{{- if .Values.controllerplugin.affinity }}
159
165
affinity : {{ toYaml .Values.controllerplugin.affinity | nindent 8 }}
160
166
{{- end }}
Original file line number Diff line number Diff line change 87
87
mountPath : /runtimeconfig
88
88
readOnly : true
89
89
{{- end }}
90
+ {{- with $.Values.nodeplugin.volumeMounts }}
91
+ {{- toYaml . | nindent 12 }}
92
+ {{- end }}
90
93
resources :
91
94
{{ toYaml $.Values.nodeplugin.nodeplugin.resources | indent 12 }}
92
95
{{- end }}
@@ -110,6 +113,9 @@ spec:
110
113
name : manila-csi-runtimeconf-cm
111
114
{{- end }}
112
115
{{- end }}
116
+ {{- with .Values.nodeplugin.volumes }}
117
+ {{- toYaml . | nindent 8 }}
118
+ {{- end }}
113
119
{{- if .Values.nodeplugin.affinity }}
114
120
affinity : {{ toYaml .Values.nodeplugin.affinity | nindent 8 }}
115
121
{{- end }}
Original file line number Diff line number Diff line change @@ -76,6 +76,8 @@ nodeplugin:
76
76
# Use fullnameOverride to fully override the name of this component
77
77
# fullnameOverride: some-other-name
78
78
podSecurityContext : {}
79
+ volumes : []
80
+ volumeMounts : []
79
81
80
82
# StatefulSet deployment
81
83
controllerplugin :
@@ -121,6 +123,17 @@ controllerplugin:
121
123
# Use fullnameOverride to fully override the name of this component
122
124
# fullnameOverride: some-other-name
123
125
podSecurityContext : {}
126
+ volumes : []
127
+ # - name: cacert
128
+ # hostPath:
129
+ # path: /etc/cacert
130
+ volumeMounts : []
131
+ # - name: cacert
132
+ # mountPath: /etc/cacert
133
+ # readOnly: true
134
+ # - name: cloud-config
135
+ # mountPath: /etc/kubernetes
136
+ # readOnly: true
124
137
125
138
# Log verbosity level.
126
139
# See https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/logging.md
You can’t perform that action at this time.
0 commit comments