mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-03-26 17:51:54 +01:00
* Add oauth vars to the kubernetes api server deployment * Add example google oauth id and secret to kubernetes secrets
12 lines
572 B
YAML
12 lines
572 B
YAML
# The values in this file should be changed
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: danswer-secrets
|
|
type: Opaque
|
|
data:
|
|
postgres_user: cG9zdGdyZXM= # "postgres" base64 encoded
|
|
postgres_password: cGFzc3dvcmQ= # "password" base64 encoded
|
|
google_oauth_client_id: ZXhhbXBsZS1jbGllbnQtaWQ= # "example-client-id" base64 encoded. You will need to provide this, use echo -n "your-client-id" | base64
|
|
google_oauth_client_secret: example_google_oauth_secret # "example-client-secret" base64 encoded. You will need to provide this, use echo -n "your-client-id" | base64
|