diff --git a/speedtest/Chart.yaml b/speedtest/Chart.yaml index b1c0b854..95840762 100644 --- a/speedtest/Chart.yaml +++ b/speedtest/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: speedtest -version: 1.0.2 +version: 1.1.0 appVersion: 1.0.0 description: periodic speedtest and save the results to InfluxDB keywords: diff --git a/speedtest/templates/configmap.yaml b/speedtest/templates/configmap.yaml index d48e4b07..ce137c2e 100644 --- a/speedtest/templates/configmap.yaml +++ b/speedtest/templates/configmap.yaml @@ -11,11 +11,6 @@ data: config.ini: | [GENERAL] Delay = {{ .Values.config.delay }} - {{- if .Values.debug }} - Output = True - {{- else }} - Output = False - {{- end }} [INFLUXDB] Address = {{ .Values.config.influxdb.host }} Port = {{ .Values.config.influxdb.port }} @@ -29,4 +24,9 @@ data: {{- end }} [SPEEDTEST] Server = {{ .Values.config.speedtest.server }} - + [LOGGING] + {{- if .Values.debug }} + Level = debug + {{- else }} + Level = info + {{- end }}