Skip to content

Commit 3a6b2d2

Browse files
authored
[CSI cinder]update chart cacert location to /etc/caert (kubernetes#1170)
per doc for chart and our previous manifest, cacert is located at /etc/cacert
1 parent 11b03f9 commit 3a6b2d2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

charts/cinder-csi-plugin/templates/controllerplugin-statefulset.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,12 @@ spec:
101101
- name: socket-dir
102102
mountPath: /csi
103103
- name: cacert
104-
mountPath: /etc/kubernetes
104+
mountPath: /etc/cacert
105105
readOnly: true
106106
volumes:
107107
- name: cacert
108108
hostPath:
109-
path: /etc/kubernetes
109+
path: /etc/cacert
110110
type: Directory
111111
- name: socket-dir
112-
emptyDir:
112+
emptyDir:

charts/cinder-csi-plugin/templates/nodeplugin-daemonset.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ spec:
7474
mountPath: /dev
7575
mountPropagation: "HostToContainer"
7676
- name: cacert
77-
mountPath: /etc/kubernetes
77+
mountPath: /etc/cacert
7878
readOnly: true
7979
volumes:
8080
- name: cacert
8181
hostPath:
82-
path: /etc/kubernetes
82+
path: /etc/cacert
8383
type: Directory
8484
- name: socket-dir
8585
hostPath:
@@ -100,4 +100,4 @@ spec:
100100
- name: pods-probe-dir
101101
hostPath:
102102
path: /dev
103-
type: Directory
103+
type: Directory

0 commit comments

Comments
 (0)