Commit 7ec95309 authored by John Gethoefer's avatar John Gethoefer Committed by David McKay

chore: allows for overridable ingress path

bump chart version for chronograf + influxdb
parent 93814482
...@@ -21,7 +21,7 @@ spec: ...@@ -21,7 +21,7 @@ spec:
- host: {{ .Values.ingress.hostname }} - host: {{ .Values.ingress.hostname }}
http: http:
paths: paths:
- path: / - path: {{ .Values.ingress.path }}
backend: backend:
serviceName: {{ template "chronograf.fullname" . }} serviceName: {{ template "chronograf.fullname" . }}
servicePort: 80 servicePort: 80
......
...@@ -66,6 +66,7 @@ ingress: ...@@ -66,6 +66,7 @@ ingress:
# kubernetes.io/ingress.class: "nginx" # kubernetes.io/ingress.class: "nginx"
# secretName: my-tls-cert # secretName: my-tls-cert
# kubernetes.io/tls-acme: "true" # kubernetes.io/tls-acme: "true"
path: /
## OAuth Settings for OAuth Providers ## OAuth Settings for OAuth Providers
## More information -> https://github.com/influxdata/chronograf/blob/master/docs/auth.md ## More information -> https://github.com/influxdata/chronograf/blob/master/docs/auth.md
......
...@@ -18,7 +18,7 @@ spec: ...@@ -18,7 +18,7 @@ spec:
- host: {{ .Values.ingress.hostname }} - host: {{ .Values.ingress.hostname }}
http: http:
paths: paths:
- path: / - path: {{ .Values.ingress.path }}
backend: backend:
serviceName: {{ include "influxdb.fullname" . }} serviceName: {{ include "influxdb.fullname" . }}
servicePort: 8086 servicePort: 8086
......
...@@ -164,6 +164,7 @@ ingress: ...@@ -164,6 +164,7 @@ ingress:
annotations: {} annotations: {}
# kubernetes.io/ingress.class: "nginx" # kubernetes.io/ingress.class: "nginx"
# kubernetes.io/tls-acme: "true" # kubernetes.io/tls-acme: "true"
path: /
## Use an alternate scheduler, e.g. "stork". ## Use an alternate scheduler, e.g. "stork".
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
......
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