diff --git a/kubernetes/helm_charts/core/nginx-public-ingress/values.j2 b/kubernetes/helm_charts/core/nginx-public-ingress/values.j2 index 8903152447..eccc3fca4f 100644 --- a/kubernetes/helm_charts/core/nginx-public-ingress/values.j2 +++ b/kubernetes/helm_charts/core/nginx-public-ingress/values.j2 @@ -260,7 +260,7 @@ proxyconfig: | proxy_set_header X-Real-IP {{ nginx_client_public_ip_header | d('$remote_addr') }}; proxy_set_header X-Scheme $scheme; proxy_set_header X-Auth-Request-Redirect $request_uri; - proxy_pass http://oauth2-proxy.logging.svc.cluster.local; + proxy_pass http://oauth2-proxy-service.logging.svc.cluster.local; } location = /oauth2/auth { proxy_set_header Host $host; @@ -269,7 +269,7 @@ proxyconfig: | # nginx auth_request includes headers but not body proxy_set_header Content-Length ""; proxy_pass_request_body off; - proxy_pass http://oauth2-proxy.logging.svc.cluster.local; + proxy_pass http://oauth2-proxy-service.logging.svc.cluster.local; } location /dashboard/ { auth_request /oauth2/auth;