|
26 | 26 | securityContext:
|
27 | 27 | {{- toYaml .Values.podSecurityContext | nindent 8 }}
|
28 | 28 | containers:
|
29 |
| - - name: {{ .Chart.Name }} |
| 29 | + - name: csi-node-driver-registrar |
| 30 | + image: ghcr.io/homelab-library/csi-node-driver-registrar:2.0.1 |
| 31 | + args: |
| 32 | + - '--v=5' |
| 33 | + - '--csi-address=$(ADDRESS)' |
| 34 | + - '--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)' |
| 35 | + env: |
| 36 | + - name: ADDRESS |
| 37 | + value: /plugin/csi.sock |
| 38 | + - name: DRIVER_REG_SOCK_PATH |
| 39 | + value: /var/lib/kubelet/plugins_registry/zed-csi/csi.sock |
| 40 | + - name: KUBE_NODE_NAME |
| 41 | + valueFrom: |
| 42 | + fieldRef: |
| 43 | + fieldPath: spec.nodeName |
| 44 | + volumeMounts: |
| 45 | + - name: plugin-dir |
| 46 | + mountPath: /plugin |
| 47 | + - name: registration-dir |
| 48 | + mountPath: /registration |
| 49 | + - name: zed-csi-driver |
30 | 50 | securityContext:
|
31 | 51 | {{- toYaml .Values.securityContext | nindent 12 }}
|
32 | 52 | image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
|
37 | 57 | protocol: TCP
|
38 | 58 | resources:
|
39 | 59 | {{- toYaml .Values.resources | nindent 12 }}
|
| 60 | + volumeMounts: |
| 61 | + - name: plugin-dir |
| 62 | + mountPath: /plugin |
| 63 | + - name: pods-mount-dir |
| 64 | + mountPath: /var/lib/kubelet/pods |
| 65 | + mountPropagation: 'Bidirectional' |
| 66 | + - name: zed-csi-yml |
| 67 | + mountPath: /etc/zed-csi.yml |
| 68 | + subPath: zed-csi.yml |
| 69 | + volumes: |
| 70 | + - name: plugin-dir |
| 71 | + hostPath: |
| 72 | + path: /var/lib/kubelet/plugins_registry/zed-csi |
| 73 | + type: DirectoryOrCreate |
| 74 | + - name: registration-dir |
| 75 | + hostPath: |
| 76 | + path: /var/lib/kubelet/plugins_registry/ |
| 77 | + type: Directory |
| 78 | + - name: pods-mount-dir |
| 79 | + hostPath: |
| 80 | + path: /var/lib/kubelet/pods |
| 81 | + type: Directory |
| 82 | + - name: zed-csi-yml |
| 83 | + configMap: |
| 84 | + name: {{ include "zed-csi.fullname" . }} |
40 | 85 | {{- with .Values.nodeSelector }}
|
41 | 86 | nodeSelector:
|
42 | 87 | {{- toYaml . | nindent 8 }}
|
|
0 commit comments