From 0bd58971e3dc3f30f204a46bded65279317f217f Mon Sep 17 00:00:00 2001 From: Shrikant Sharat Kandula Date: Thu, 15 Jul 2021 16:23:06 +0530 Subject: [PATCH] Fix OAuth endpoint prefix in k8s ingress configuration (#5837) --- deploy/k8s/scripts/appsmith-ingress.yaml.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/k8s/scripts/appsmith-ingress.yaml.sh b/deploy/k8s/scripts/appsmith-ingress.yaml.sh index d353ab1cd5..f88edcabda 100755 --- a/deploy/k8s/scripts/appsmith-ingress.yaml.sh +++ b/deploy/k8s/scripts/appsmith-ingress.yaml.sh @@ -31,7 +31,7 @@ if [[ "$ssl_enable" == "true" ]]; then backend: serviceName: appsmith-backend-service servicePort: 8080 - - path: /oauth + - path: /oauth2 pathType: Prefix backend: serviceName: appsmith-backend-service @@ -74,7 +74,7 @@ else backend: serviceName: appsmith-backend-service servicePort: 8080 - - path: /oauth + - path: /oauth2 pathType: Prefix backend: serviceName: appsmith-backend-service @@ -95,4 +95,4 @@ else serviceName: appsmith-editor servicePort: 80 EOF -fi \ No newline at end of file +fi