We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dfdc3b commit afc4895Copy full SHA for afc4895
templates/alb-ingress.yaml
@@ -48,14 +48,20 @@ spec:
48
paths:
49
{{- if .Values.awsLbController.redirectToHTTPSPort }}
50
- path: /*
51
+ pathType: Prefix
52
backend:
- serviceName: redirect-to-https
53
- servicePort: use-annotation
+ service:
54
+ name: redirect-to-https
55
+ port:
56
+ name: use-annotation
57
{{- end }}
58
- path: {{ .Values.awsLbController.path }}
59
60
- serviceName: {{ $name }}
- servicePort: {{ .Values.service.ports.http.port }}
61
62
+ name: {{ $name }}
63
64
+ number: {{ .Values.service.ports.http.port }}
65
{{- if .Values.awsLbController.host }}
66
host: {{ .Values.awsLbController.host | quote }}
67
0 commit comments