[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 apiVersion: v2
name: uptimerobot name: uptimerobot
version: 3.0.0 version: 3.0.1
appVersion: 1.1.0 appVersion: 1.1.0
description: A tool to get statistics from Uptime Robot and log it into InfluxDB description: A tool to get statistics from Uptime Robot and log it into InfluxDB
keywords: keywords:

View File

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