Created
March 1, 2020 08:50
-
-
Save arthurk/d872e92fabfca4f2e6af84662da10106 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{- if .Values.ingress.enabled -}} | |
{{- $fullName := include "mychart.fullname" . -}} | |
{{- $svcPort := .Values.service.port -}} | |
{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} | |
apiVersion: networking.k8s.io/v1beta1 | |
{{- else -}} | |
apiVersion: extensions/v1beta1 | |
{{- end }} | |
kind: Ingress | |
metadata: | |
name: {{ $fullName }} | |
labels: | |
{{- include "mychart.labels" . | nindent 4 }} | |
{{- with .Values.ingress.annotations }} | |
annotations: | |
{{- toYaml . | nindent 4 }} | |
{{- end }} | |
spec: | |
{{- if .Values.ingress.tls }} | |
tls: | |
{{- range .Values.ingress.tls }} | |
- hosts: | |
{{- range .hosts }} | |
- {{ . | quote }} | |
{{- end }} | |
secretName: {{ .secretName }} | |
{{- end }} | |
{{- end }} | |
rules: | |
{{- range .Values.ingress.hosts }} | |
- host: {{ .host | quote }} | |
http: | |
paths: | |
{{- range .paths }} | |
- path: {{ . }} | |
backend: | |
serviceName: {{ $fullName }} | |
servicePort: {{ $svcPort }} | |
{{- end }} | |
{{- end }} | |
{{- end }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment