Rework to generic extraEnv

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
Marco Kilchhofer 2021-07-27 09:01:04 +02:00 committed by GitHub
parent 6737c27ab3
commit e0503f6ba5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 18 additions and 9 deletions

View file

@ -36,8 +36,9 @@ spec:
- --namespaced
{{- end }}
env:
- name: DEBUG_LOG
value: {{ .Values.eventbusController.debugLogging | quote }}
{{- with .Values.eventbusController.extraEnv }}
{{- toYaml . | nindent 12 }}
{{- end }}
- name: NAMESPACE
valueFrom:
fieldRef:

View file

@ -36,8 +36,9 @@ spec:
- --namespaced
{{- end }}
env:
- name: DEBUG_LOG
value: {{ .Values.eventsourceController.debugLogging | quote }}
{{- with .Values.eventsourceController.extraEnv }}
{{- toYaml . | nindent 12 }}
{{- end }}
- name: NAMESPACE
valueFrom:
fieldRef:

View file

@ -36,8 +36,9 @@ spec:
- --namespaced
{{- end }}
env:
- name: DEBUG_LOG
value: {{ .Values.sensorController.debugLogging | quote }}
{{- with .Values.sensorController.extraEnv }}
{{- toYaml . | nindent 12 }}
{{- end }}
- name: NAMESPACE
valueFrom:
fieldRef:

View file

@ -50,7 +50,9 @@ sensorController:
image: argoproj/sensor-controller
tag: v1.3.1
replicaCount: 1
debugLogging: false
extraEnv: []
# - name: DEBUG_LOG
# value: "true"
sensorImage: argoproj/sensor
podAnnotations: {}
nodeSelector: {}
@ -65,7 +67,9 @@ eventsourceController:
image: argoproj/eventsource-controller
tag: v1.3.1
replicaCount: 1
debugLogging: false
extraEnv: []
# - name: DEBUG_LOG
# value: "true"
eventsourceImage: argoproj/eventsource
podAnnotations: {}
nodeSelector: {}
@ -80,7 +84,9 @@ eventbusController:
image: argoproj/eventbus-controller
tag: v1.3.1
replicaCount: 1
debugLogging: false
extraEnv: []
# - name: DEBUG_LOG
# value: "true"
podAnnotations: {}
nodeSelector: {}
podLabels: {}