Skip to content

Commit

Permalink
Merge pull request #1160 from nickytd/fix-disable-component-controllers
Browse files Browse the repository at this point in the history
Fix quotes for disable-component-controller argument string in fluent-operator deployment template.
  • Loading branch information
benjaminhuo authored May 29, 2024
2 parents ffbe88e + dac584d commit ec9c5e4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ spec:
{{- with .Values.operator.extraArgs }}
{{- toYaml . | nindent 10 }}
{{- end }}
- --disable-component-controllers={{ .Values.operator.disableComponentControllers | quote }}
{{- with .Values.operator.disableComponentControllers }}
- {{ printf "%s=%s" "--disable-component-controllers" . | quote }}
{{- end }}
volumeMounts:
- name: env
mountPath: /fluent-operator
Expand Down

0 comments on commit ec9c5e4

Please sign in to comment.