File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 labels :
2020 control-plane : controller-manager
2121 {{- include "chart.selectorLabels" . | nindent 8 }}
22+ {{- with .Values.controllerManager.labels }}
23+ {{- toYaml . | nindent 8 }}
24+ {{- end }}
2225 annotations :
2326 kubectl.kubernetes.io/default-container : manager
27+ {{- with .Values.controllerManager.annotations }}
28+ {{- toYaml . | nindent 8 }}
29+ {{- end }}
2430 spec :
2531 containers :
2632 - args : {{- toYaml .Values.controllerManager.kubeRbacProxy.args | nindent 8 }}
@@ -64,10 +70,21 @@ spec:
6470 port : 8081
6571 initialDelaySeconds : 5
6672 periodSeconds : 10
73+ {{- with .Values.controllerManager.manager.volumeMounts }}
74+ volumeMounts :
75+ {{- toYaml . | nindent 8 }}
76+ {{- end }}
6777 resources : {{- toYaml .Values.controllerManager.manager.resources | nindent 10
6878 }}
6979 securityContext : {{- toYaml .Values.controllerManager.manager.containerSecurityContext
7080 | nindent 10 }}
81+ {{- with .Values.controllerManager.extraContainers }}
82+ {{- toYaml . | nindent 6 }}
83+ {{- end }}
84+ {{- with .Values.controllerManager.volumes }}
85+ volumes :
86+ {{- toYaml . | nindent 6 }}
87+ {{- end }}
7188 securityContext :
7289 runAsNonRoot : true
7390 serviceAccountName : {{ include "chart.fullname" . }}-controller-manager
Original file line number Diff line number Diff line change 11controllerManager :
2+ annotations : {}
3+ labels : {}
24 serviceMonitor :
35 enabled : false
46 kubeRbacProxy :
@@ -43,10 +45,13 @@ controllerManager:
4345 requests :
4446 cpu : 10m
4547 memory : 64Mi
48+ volumeMounts : []
49+ extraContainers : []
50+ volumes : []
4651 replicas : 1
4752 serviceAccount :
4853 annotations : {}
49- tolerations : {}
54+ tolerations : []
5055kubernetesClusterDomain : cluster.local
5156metricsService :
5257 ports :
You can’t perform that action at this time.
0 commit comments