update configuration docker setup for data platform
This commit is contained in:
5
01-infra/init/00-create-keycloak-database.sql
Normal file
5
01-infra/init/00-create-keycloak-database.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
-- Create Keycloak database
|
||||
CREATE DATABASE keycloak;
|
||||
|
||||
-- Grant privileges to postgres user
|
||||
GRANT ALL PRIVILEGES ON DATABASE keycloak TO postgres;
|
||||
8
01-infra/init/03-create-airflow-databases.sql
Normal file
8
01-infra/init/03-create-airflow-databases.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
-- Create databases for Airbyte OSS
|
||||
-- These databases will be used by the Airbyte deployment in 04-ingestion
|
||||
|
||||
-- Main Airbyte database
|
||||
CREATE DATABASE airflow_db;
|
||||
|
||||
-- Grant permissions to postgres user
|
||||
GRANT ALL PRIVILEGES ON DATABASE airflow_db TO postgres;
|
||||
Reference in New Issue
Block a user