From c5f494d3e065e7863438be18710a038e9b88e9cd Mon Sep 17 00:00:00 2001 From: harshavardhanc Date: Mon, 29 Jun 2020 10:50:11 +0530 Subject: [PATCH] Isssue #00 fix: updating svc name for oauth --- kubernetes/helm_charts/core/nginx-public-ingress/values.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;