| {{- if .Values.ingress.enabled -}} |
| --- |
| apiVersion: {{ include "common.capabilities.ingress.apiVersion" . }} |
| kind: Ingress |
| metadata: |
| name: {{ include "common.names.fullname" . }} |
| labels: |
| {{- include "common.labels.standard" . | nindent 4 }} |
| {{- with .Values.ingress.annotations }} |
| annotations: |
| {{- toYaml . | nindent 4 }} |
| {{- end }} |
| spec: |
| {{- if .Values.ingress.ingressClassName }} |
| ingressClassName: {{ .Values.ingress.ingressClassName }} |
| {{- end }} |
| {{- if .Values.ingress.tls.enabled }} |
| tls: |
| - hosts: |
| - {{ .Values.ingress.host | quote }} |
| secretName: "{{ .Values.ingress.tls.secretName }}" |
| {{- end }} |
| rules: |
| - host: {{ .Values.ingress.host | quote }} |
| http: |
| paths: |
| - path: {{ .Values.ingress.path }} |
| {{- if eq "true" (include "common.ingress.supportsPathType" .) }} |
| pathType: {{ .Values.ingress.pathType }} |
| {{- end }} |
| backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "http" "context" $) | nindent 14 }} |
| ... |
| {{- end }} |