From 1e205f248d69c61a9dd5412582554e8002a74ea1 Mon Sep 17 00:00:00 2001 From: Marcos Marx Date: Tue, 1 Oct 2024 12:34:27 -0300 Subject: [PATCH] fix(docs): remove missing secret values in values for database (#45951) --- .../deploying-airbyte/integrations/database.md | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/docs/deploying-airbyte/integrations/database.md b/docs/deploying-airbyte/integrations/database.md index 9d54e511c999..53225000f0cb 100644 --- a/docs/deploying-airbyte/integrations/database.md +++ b/docs/deploying-airbyte/integrations/database.md @@ -18,16 +18,13 @@ metadata: type: Opaque stringData: # Database Secrets - ## database-host: ## e.g. database.internal - ## database-port: ## e.g. 5432 - ## database-name: ## e.g. airbyte - ## database-user: ## e.g. airbyte + database-user: ## e.g. airbyte database-password: ## e.g. password ``` ## Values -Add external database details to your `values.yaml` file. This disables the default internal Postgres database (`airbyte/db`), and configures your external Postgres database. You can override all of the values below by setting them in the airbyte-config-secrets or set them directly in the `values.yaml` file. **The database password is a special case in that it must be set in the [airbyte-config-secrets](#secrets).** +Add external database details to your `values.yaml` file. This disables the default internal Postgres database (`airbyte/db`), and configures your external Postgres database. You can override all of the values below by setting them in the airbyte-config-secrets or set them directly in the `values.yaml` file. **The database password is a special case in that it must be set in the [airbyte-config-secrets](#secrets).** ```yaml postgresql: @@ -42,25 +39,16 @@ global: # -- The database host host: "" - # -- The key within `secretName` where host is stored - #hostSecretKey: "" # e.g. "database-host" # -- The database port port: "" - # -- The key within `secretName` where port is stored - #portSecretKey: "" # e.g. "database-port" # -- The database name database: "" - # -- The key within `secretName` where the database name is stored - #databaseSecretKey: "" # e.g. "database-name" # -- The database user - user: "" - # -- The key within `secretName` where the user is stored - #userSecretKey: "" # e.g. "database-user" + userSecretKey: "" # e.g. "database-user" # -- The key within `secretName` where password is stored passwordSecretKey: "" # e.g."database-password" ``` -