We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6b03c2 commit bdedecdCopy full SHA for bdedecd
1 file changed
charts/network-operator/templates/manager/manager.yaml
@@ -87,6 +87,9 @@ spec:
87
{}
88
{{- end }}
89
volumeMounts:
90
+ {{- if .Values.manager.extraVolumeMounts }}
91
+ {{- toYaml .Values.manager.extraVolumeMounts | nindent 10 }}
92
+ {{- end }}
93
{{- if .Values.certManager.enable }}
94
- mountPath: /tmp/k8s-webhook-server/serving-certs
95
name: webhook-certs
@@ -101,6 +104,9 @@ spec:
101
104
serviceAccountName: {{ include "network-operator.resourceName" (dict "suffix" "controller-manager" "context" $) }}
102
105
terminationGracePeriodSeconds: 10
103
106
volumes:
107
+ {{- if .Values.manager.extraVolumes }}
108
+ {{- toYaml .Values.manager.extraVolumes | nindent 8 }}
109
110
111
- name: webhook-certs
112
secret:
0 commit comments