feat(argo-events): Add debugLogging value for controller components

Signed-off-by: Calum MacRae <hi@cmacr.ae>
This commit is contained in:
Calum MacRae 2020-12-10 11:30:15 +00:00
parent 40e52f62ac
commit 90331a86e5
No known key found for this signature in database
GPG key ID: 53922D7E54A14F5D
5 changed files with 10 additions and 1 deletions

View file

@ -1,7 +1,7 @@
apiVersion: v1
description: A Helm chart to install Argo-Events in k8s Cluster
name: argo-events
version: 1.0.0
version: 1.0.1
keywords:
- argo-events
- sensor-controller

View file

@ -29,6 +29,8 @@ spec:
- --namespaced
{{- end }}
env:
- name: DEBUG_LOG
value: {{ .Values.eventbusController.debugLogging }}
- name: NAMESPACE
valueFrom:
fieldRef:

View file

@ -29,6 +29,8 @@ spec:
- --namespaced
{{- end }}
env:
- name: DEBUG_LOG
value: {{ .Values.eventsourceController.debugLogging }}
- name: NAMESPACE
valueFrom:
fieldRef:

View file

@ -29,6 +29,8 @@ spec:
- --namespaced
{{- end }}
env:
- name: DEBUG_LOG
value: {{ .Values.sensorController.debugLogging }}
- name: NAMESPACE
valueFrom:
fieldRef:

View file

@ -48,6 +48,7 @@ sensorController:
image: sensor-controller
tag: v1.0.0
replicaCount: 1
debugLogging: false
sensorImage: sensor
eventsourceController:
@ -55,6 +56,7 @@ eventsourceController:
image: eventsource-controller
tag: v1.0.0
replicaCount: 1
debugLogging: false
eventsourceImage: eventsource
eventbusController:
@ -62,5 +64,6 @@ eventbusController:
image: eventbus-controller
tag: v1.0.0
replicaCount: 1
debugLogging: false
natsStreamingImage: nats-streaming:0.17.0
natsMetricsExporterImage: synadia/prometheus-nats-exporter:0.6.2