Skip to content
Merged
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
2 changes: 1 addition & 1 deletion charts/cinder-csi-plugin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: v1.32.0
description: Cinder CSI Chart for OpenStack
name: openstack-cinder-csi
version: 2.33.0-alpha.1
version: 2.33.0-alpha.2
home: https://github.com/kubernetes/cloud-provider-openstack
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
maintainers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ spec:
- name: CSI_ENDPOINT
value: unix://csi/csi.sock
- name: CLOUD_CONFIG
value: /etc/kubernetes/{{ .Values.secret.filename }}
value: /etc/config/{{ .Values.secret.filename }}
- name: CLUSTER_NAME
value: "{{ .Values.clusterID }}"
{{- if .Values.csi.plugin.extraEnv }}
Expand Down Expand Up @@ -233,7 +233,7 @@ spec:
{{- else if .Values.secret.hostMount }}
- name: cloud-config
hostPath:
path: /etc/kubernetes
path: /etc/config
{{- end }}
{{- with .Values.csi.plugin.volumes }}
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 2 additions & 2 deletions charts/cinder-csi-plugin/templates/nodeplugin-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ spec:
- name: CSI_ENDPOINT
value: unix://csi/csi.sock
- name: CLOUD_CONFIG
value: /etc/kubernetes/{{ .Values.secret.filename }}
value: /etc/config/{{ .Values.secret.filename }}
{{- if .Values.csi.plugin.extraEnv }}
{{- toYaml .Values.csi.plugin.extraEnv | nindent 12 }}
{{- end }}
Expand Down Expand Up @@ -163,7 +163,7 @@ spec:
{{- else if .Values.secret.hostMount }}
- name: cloud-config
hostPath:
path: /etc/kubernetes
path: /etc/config
{{- end }}
{{- with .Values.csi.plugin.volumes }}
{{- toYaml . | nindent 8 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/cinder-csi-plugin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ csi:
mountPath: /etc/cacert
readOnly: true
- name: cloud-config
mountPath: /etc/kubernetes
mountPath: /etc/config
readOnly: true
nodePlugin:
dnsPolicy: ClusterFirstWithHostNet
Expand Down