Merge pull request #742 from bluelabsio/path-templating

set / as default path but allow for individual configuration in values.yml
master
Jimmy Zelinskie 5 years ago committed by GitHub
commit 3316e7e1ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,6 +1,7 @@
{{- if .Values.ingress.enabled -}} {{- if .Values.ingress.enabled -}}
{{- $serviceName := include "clair.fullname" . -}} {{- $serviceName := include "clair.fullname" . -}}
{{- $servicePort := .Values.service.externalApiPort -}} {{- $servicePort := .Values.service.externalApiPort -}}
{{- $path := .Values.ingress.path | default "/" -}}
apiVersion: extensions/v1beta1 apiVersion: extensions/v1beta1
kind: Ingress kind: Ingress
metadata: metadata:
@ -20,7 +21,7 @@ spec:
- host: {{ $host }} - host: {{ $host }}
http: http:
paths: paths:
- path: / - path: {{ $path }}
backend: backend:
serviceName: {{ $serviceName }} serviceName: {{ $serviceName }}
servicePort: {{ $servicePort }} servicePort: {{ $servicePort }}

Loading…
Cancel
Save