We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea935a1 commit 8b80e19Copy full SHA for 8b80e19
charts/k8s-aws-operator/templates/deployment.yaml
@@ -37,6 +37,9 @@ spec:
37
resources: {{ .Values.resources | toYaml | nindent 10 }}
38
args:
39
- -region={{ required "aws.region is required" .Values.aws.region }}
40
+ {{- range $key, $value := .Values.containerArgs }}
41
+ - -{{- $key }}={{ $value }}
42
+ {{- end }}
43
{{- if or .Values.leaderElection.enabled (gt (.Values.replicas | int) 1) }}
44
- -leader-election-namespace={{ .Release.Namespace }}
45
{{- end }}
charts/k8s-aws-operator/values.yaml
@@ -34,3 +34,7 @@ metrics:
34
- port: metrics
35
service:
36
clusterIP:
+
+# additional arguments for operator deployment
+containerArgs: {}
+# default-tags: test=test
0 commit comments