File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 6464 command :
6565 {{- toYaml (index $v "command") | nindent 10 }}
6666 {{- if (and ($.Values.ingress.className) (or (eq $.Values.ingress.className "nginx") (eq $.Values.ingress.className "traefik"))) }}
67- - " --proxy-headers"
68- - " --forwarded-allow-ips=*"
67+ - " --proxy-headers" # Needed when using reverse proxy
68+ - " --forwarded-allow-ips=*" # Needed when using reverse proxy
6969 - " --root-path=/{{ $serviceName }}"
7070 {{- end }}{{/* needed for proxies and path rewrites on NLB */}}
7171 livenessProbe :
Original file line number Diff line number Diff line change @@ -45,6 +45,8 @@ ingress:
4545 className : " nginx"
4646 # Path configuration
4747 pathType : " Prefix" # Can be "Prefix" or "ImplementationSpecific" based on controller
48+ # NOTE: When using nginx ingress controller with regex in pathSuffix,
49+ # you must set pathType to "ImplementationSpecific". See issue #189 for more context.
4850 pathSuffix : " " # Add a suffix to service paths (e.g. "(/|$)(.*)" for nginx regex)
4951 rootPath : " " # Root path for doc server
5052 # Host configuration
You can’t perform that action at this time.
0 commit comments