bumping helm-repo

This commit is contained in:
Jeff Billimek 2019-02-06 22:09:20 -05:00
parent fc48510e8a
commit e7d854bebd
2 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
apiVersion: v1 apiVersion: v1
name: speedtest name: speedtest
version: 1.0.2 version: 1.1.0
appVersion: 1.0.0 appVersion: 1.0.0
description: periodic speedtest and save the results to InfluxDB description: periodic speedtest and save the results to InfluxDB
keywords: keywords:

View File

@ -11,11 +11,6 @@ data:
config.ini: | config.ini: |
[GENERAL] [GENERAL]
Delay = {{ .Values.config.delay }} Delay = {{ .Values.config.delay }}
{{- if .Values.debug }}
Output = True
{{- else }}
Output = False
{{- end }}
[INFLUXDB] [INFLUXDB]
Address = {{ .Values.config.influxdb.host }} Address = {{ .Values.config.influxdb.host }}
Port = {{ .Values.config.influxdb.port }} Port = {{ .Values.config.influxdb.port }}
@ -29,4 +24,9 @@ data:
{{- end }} {{- end }}
[SPEEDTEST] [SPEEDTEST]
Server = {{ .Values.config.speedtest.server }} Server = {{ .Values.config.speedtest.server }}
[LOGGING]
{{- if .Values.debug }}
Level = debug
{{- else }}
Level = info
{{- end }}