[uptimerobot] Swapping from configMapKeyRef to secretKeyRef (#641)

* Swapping from configMapKeyRef to secretKeyRef

* bumping the chart verison
This commit is contained in:
Matthew Mattox 2021-03-05 07:31:48 -06:00 committed by GitHub
parent 97b2477fba
commit f93046f40f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
apiVersion: v2
name: uptimerobot
version: 3.0.0
version: 3.0.1
appVersion: 1.1.0
description: A tool to get statistics from Uptime Robot and log it into InfluxDB
keywords:

View File

@ -39,14 +39,14 @@ spec:
{{- if .Values.config.influxdb.username }}
- name: INFLUX_USERNAME
valueFrom:
configMapKeyRef:
secretKeyRef:
name: {{ template "uptimerobot.fullname" . }}
key: influxdb-username
{{- end }}
{{- if .Values.config.influxdb.password }}
- name: INFLUX_PASSWORD
valueFrom:
configMapKeyRef:
secretKeyRef:
name: {{ template "uptimerobot.fullname" . }}
key: influxdb-password
{{- end }}
@ -73,4 +73,4 @@ spec:
{{- if .Values.nodeSelector }}
nodeSelector:
{{ toYaml .Values.nodeSelector | indent 8 }}
{{- end }}
{{- end }}