The deployment's `extraVolumeMounts` does not support `subPath` attribute from helm values. Instead, it explicitly only unpackets: ``` {{- range .Values.extraVolumeMounts }} - name: {{ .name }} mountPath: {{ .mountPath }} readOnly: {{ .readOnly }} {{- end }} ``` This should likely include the yaml as is from the values, as is done for `extraVolumes`.
The deployment's
extraVolumeMountsdoes not supportsubPathattribute from helm values. Instead, it explicitly only unpackets:This should likely include the yaml as is from the values, as is done for
extraVolumes.