Fix Kubernetes Templates (#584)

This commit is contained in:
Yuhong Sun 2023-10-17 13:32:00 -07:00 committed by GitHub
parent e519dfc849
commit e73739547a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View File

@ -7,5 +7,5 @@ type: Opaque
data:
postgres_user: cG9zdGdyZXM= # "postgres" base64 encoded
postgres_password: cGFzc3dvcmQ= # "password" base64 encoded
google_oauth_client_id: MjcwNjk3ODEzMi1iMzZnb20wa2Fhb3I2MmlwYWt2dmRxdm91OGRic2d1cC5hcHBzLmdvb2dsZXVzZXJjb250ZW50LmNvbQ== # You will need to provide this, use echo -n "your-client-id" | base64
google_oauth_client_secret: R09DU1BYLWlZbDBSN1ZvYnk0cjZJRUFmekRqdjhad0pnOGI= # You will need to provide this, use echo -n "your-client-id" | base64
google_oauth_client_id: # You will need to provide this, use echo -n "your-client-id" | base64
google_oauth_client_secret: # You will need to provide this, use echo -n "your-client-id" | base64

View File

@ -31,10 +31,6 @@ spec:
imagePullPolicy: IfNotPresent
ports:
- containerPort: 3000
args:
- "NEXT_PUBLIC_AUTH_TYPE=google_oauth"
env:
- name: AUTH_TYPE
value: google_oauth
- name: INTERNAL_URL
value: "http://api-server-service:80"