Add missing systemd-control and stage-dir to Helm chart (fixes #62)
This commit is contained in:
parent
44511523e2
commit
4af9636d19
1 changed files with 13 additions and 0 deletions
|
@ -94,11 +94,16 @@ spec:
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: plugin-dir
|
- name: plugin-dir
|
||||||
mountPath: /csi
|
mountPath: /csi
|
||||||
|
- name: stage-dir
|
||||||
|
mountPath: {{ .Values.kubeletPath }}/plugins/kubernetes.io/csi
|
||||||
|
mountPropagation: "Bidirectional"
|
||||||
- name: pods-mount-dir
|
- name: pods-mount-dir
|
||||||
mountPath: {{ .Values.kubeletPath }}/pods
|
mountPath: {{ .Values.kubeletPath }}/pods
|
||||||
mountPropagation: "Bidirectional"
|
mountPropagation: "Bidirectional"
|
||||||
- name: fuse-device
|
- name: fuse-device
|
||||||
mountPath: /dev/fuse
|
mountPath: /dev/fuse
|
||||||
|
- name: systemd-control
|
||||||
|
mountPath: /run/systemd
|
||||||
volumes:
|
volumes:
|
||||||
- name: registration-dir
|
- name: registration-dir
|
||||||
hostPath:
|
hostPath:
|
||||||
|
@ -108,6 +113,10 @@ spec:
|
||||||
hostPath:
|
hostPath:
|
||||||
path: {{ .Values.kubeletPath }}/plugins/ru.yandex.s3.csi
|
path: {{ .Values.kubeletPath }}/plugins/ru.yandex.s3.csi
|
||||||
type: DirectoryOrCreate
|
type: DirectoryOrCreate
|
||||||
|
- name: stage-dir
|
||||||
|
hostPath:
|
||||||
|
path: {{ .Values.kubeletPath }}/plugins/kubernetes.io/csi
|
||||||
|
type: DirectoryOrCreate
|
||||||
- name: pods-mount-dir
|
- name: pods-mount-dir
|
||||||
hostPath:
|
hostPath:
|
||||||
path: {{ .Values.kubeletPath }}/pods
|
path: {{ .Values.kubeletPath }}/pods
|
||||||
|
@ -115,3 +124,7 @@ spec:
|
||||||
- name: fuse-device
|
- name: fuse-device
|
||||||
hostPath:
|
hostPath:
|
||||||
path: /dev/fuse
|
path: /dev/fuse
|
||||||
|
- name: systemd-control
|
||||||
|
hostPath:
|
||||||
|
path: /run/systemd
|
||||||
|
type: DirectoryOrCreate
|
||||||
|
|
Loading…
Reference in a new issue