Unverified Commit a5bd8b2a authored by David McKay's avatar David McKay Committed by GitHub

fix: put end statement in correct location to separate auth and tls (#211)

parent 12f45d78
apiVersion: v1 apiVersion: v1
version: 0.1.10 version: 0.1.11
appVersion: 1.8.0 appVersion: 1.8.0
engine: gotpl engine: gotpl
...@@ -7,15 +7,15 @@ name: influxdb-enterprise ...@@ -7,15 +7,15 @@ name: influxdb-enterprise
type: application type: application
description: Run InfluxDB Enterprise on Kubernetes description: Run InfluxDB Enterprise on Kubernetes
keywords: keywords:
- influxdb - influxdb
- database - database
- timeseries - timeseries
- influxdata - influxdata
home: https://www.influxdata.com/time-series-platform/influxdb/ home: https://www.influxdata.com/time-series-platform/influxdb/
sources: sources:
- https://github.com/influxdata/influxdb - https://github.com/influxdata/influxdb
maintainers: maintainers:
- name: rawkode - name: rawkode
email: david@rawkode.com email: david@rawkode.com
- name: chobbs - name: chobbs
email: chobbs@influxdata.com email: chobbs@influxdata.com
...@@ -13,13 +13,13 @@ data: ...@@ -13,13 +13,13 @@ data:
{{ if .Values.bootstrap.auth.secretName }} {{ if .Values.bootstrap.auth.secretName }}
[http] [http]
auth-enabled = true auth-enabled = true
{{ end }}
{{ if .Values.data.https.enabled }} {{ if .Values.data.https.enabled }}
https-enabled = true https-enabled = true
https-certificate = "/var/run/secrets/tls/tls.crt" https-certificate = "/var/run/secrets/tls/tls.crt"
https-private-key = "/var/run/secrets/tls/tls.key" https-private-key = "/var/run/secrets/tls/tls.key"
{{ end }}
{{ end }} {{ end }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment