You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
In our clusters there are specific nodes that we want the Vault daemonset to select. In order to make this happen we are maintaining a fork of this Helm chart with a specific patch to enable configuring the affinity of the daemonset. We would like to see this added to the Helm chart so that we can use the official release rather than maintaining a fork.
Describe the solution you'd like
Add the following node to the values.yaml file schema:
daemonset:
affinity: {}
And the following lines to csi-daemonset.yaml:
spec:
template:
spec:
{{- if .Values.csi.daemonSet.affinity }}
affinity:
{{- toYaml .Values.csi.daemonSet.affinity | nindent 8}}
{{- end }}
Describe alternatives you've considered
Forking the chart (current state)
Additional context
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
In our clusters there are specific nodes that we want the Vault daemonset to select. In order to make this happen we are maintaining a fork of this Helm chart with a specific patch to enable configuring the affinity of the daemonset. We would like to see this added to the Helm chart so that we can use the official release rather than maintaining a fork.
Describe the solution you'd like
Add the following node to the values.yaml file schema:
And the following lines to csi-daemonset.yaml:
Describe alternatives you've considered
Forking the chart (current state)
Additional context
The text was updated successfully, but these errors were encountered: