File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 98
98
fieldRef :
99
99
apiVersion : v1
100
100
fieldPath : metadata.namespace
101
- {{- with .Values.operator.disableComponentControllers }}
102
- args : ["--disable-component-controllers","{{ . }}"]
103
- {{- end }}
101
+ args :
102
+ {{- with .Values.operator.extraArgs }}
103
+ {{- toYaml . | nindent 10 }}
104
+ {{- end }}
105
+ - --disable-component-controllers={{ .Values.operator.disableComponentControllers | quote }}
104
106
volumeMounts :
105
107
- name : env
106
108
mountPath : /fluent-operator
Original file line number Diff line number Diff line change @@ -64,6 +64,9 @@ operator:
64
64
# setting fluentbit.crdsEnable or fluentd.crdsEnable values to false.
65
65
# By default all CRDs are deployed.
66
66
disableComponentControllers : " "
67
+ # Extra arguments given to the controller flags
68
+ extraArgs : []
69
+ # - --watch-namespaces=logging
67
70
68
71
fluentbit :
69
72
# Installs a sub chart carrying the CRDs for the fluent-bit controller. The sub chart is enabled by default.
You can’t perform that action at this time.
0 commit comments