We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2acdb6 commit d8705a1Copy full SHA for d8705a1
2 files changed
charts/application-ingress/Chart.yaml
@@ -1,6 +1,6 @@
1
apiVersion: v2
2
name: ingress
3
-version: 1.1.4
+version: 1.1.5
4
description: A Helm chart for Ingress
5
type: application
6
home: https://github.com/technicaldomain/helm
charts/application-ingress/templates/ingress.yml
@@ -1,6 +1,7 @@
{{- $fullName := include "common.fullname" . }}
{{- $appLabels := include "common.labels.standard" . -}}
{{- range .Values.services }}
+{{- $pathType := .pathType | default "Prefix" }}
{{- $contextPath := .contextPath }}
{{- $serviceName := .name }}
7
{{- $servicePort := .port | default 80 }}
@@ -53,7 +54,7 @@ spec:
53
54
paths:
55
{{- range $contextPath }}
56
- path: {{ . }}
- pathType: Prefix
57
+ pathType: {{ $pathType }}
58
backend:
59
service:
60
name: {{ $serviceName }}
0 commit comments