Unverified Commit 108378f7 authored by Ahmed Khanzada's avatar Ahmed Khanzada Committed by GitHub

Adding support for Kubernetes 1.8 ingressClassName (#272)

* Adding support for Kubernetes 1.8 ingressClassName More info here: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ * An empty value here... * Only add className if it is explicitly set * Update version to 4.9.12 * Correcting version number * Update Chart.yaml Co-authored-by: 's avatartimhallinflux <timhallinflux@users.noreply.github.com>
parent 51cd77a3
apiVersion: v1
name: influxdb
version: 4.8.12
version: 4.9.13
appVersion: 1.8.4
description: Scalable datastore for metrics, events, and real-time analytics.
keywords:
......
......@@ -14,6 +14,9 @@ spec:
- {{ .Values.ingress.hostname | quote }}
secretName: {{ .Values.ingress.secretName }}
{{- end }}
{{- if .Values.ingress.className }}
ingressClassName: {{ .Values.ingress.className }}
{{- end }}
rules:
- host: {{ .Values.ingress.hostname }}
http:
......
......@@ -169,6 +169,7 @@ ingress:
tls: false
# secretName: my-tls-cert # only needed if tls above is true
hostname: influxdb.foobar.com
className: nil
annotations: {}
# kubernetes.io/ingress.class: "nginx"
# kubernetes.io/tls-acme: "true"
......
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