DAN-120 Kubernetes (#98)

Sample Kubernetes deployment with Auth default on
Also includes a bugfix for credentialed connectors with Auth turned on
This commit is contained in:
Yuhong Sun
2023-06-14 00:11:25 -07:00
committed by GitHub
parent 329d0640eb
commit 590fbbc253
34 changed files with 560 additions and 61 deletions

View File

@@ -1,4 +1,4 @@
upstream app_server {
upstream api_server {
# fail_timeout=0 means we always retry an upstream even if it failed
# to return a good HTTP response
@@ -35,7 +35,7 @@ server {
# we don't want nginx trying to do something clever with
# redirects, we set the Host: header above already.
proxy_redirect off;
proxy_pass http://app_server;
proxy_pass http://api_server;
}
location / {

View File

@@ -1,4 +1,4 @@
upstream app_server {
upstream api_server {
# fail_timeout=0 means we always retry an upstream even if it failed
# to return a good HTTP response
@@ -35,7 +35,7 @@ server {
# we don't want nginx trying to do something clever with
# redirects, we set the Host: header above already.
proxy_redirect off;
proxy_pass http://app_server;
proxy_pass http://api_server;
}
location / {