ClickHouse/tests/integration/helpers/config_cluster.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
573 B
Python
Raw Normal View History

2022-04-04 18:49:30 +00:00
# MYSQL CREDENTIALS
2022-04-05 16:46:54 +00:00
mysql_user = "root"
mysql_pass = "clickhouse"
2022-04-04 18:49:30 +00:00
# MYSQL8 CREDENTIALS
2022-04-05 16:46:54 +00:00
mysql8_user = "root"
mysql8_pass = "clickhouse"
2022-04-04 18:49:30 +00:00
# POSTGRES CREDENTIALS
2022-04-05 16:46:54 +00:00
pg_user = "postgres"
pg_pass = "mysecretpassword"
pg_db = "postgres"
2022-04-04 18:49:30 +00:00
# MINIO CREDENTIALS
2022-04-05 16:46:54 +00:00
minio_access_key = "minio"
minio_secret_key = "minio123"
2022-04-04 18:49:30 +00:00
# MONGODB CREDENTIALS
2022-04-05 16:46:54 +00:00
mongo_user = "root"
mongo_pass = "clickhouse"
2022-04-04 18:49:30 +00:00
# ODBC CREDENTIALS
2022-04-05 16:46:54 +00:00
odbc_mysql_uid = "root"
odbc_mysql_pass = "clickhouse"
odbc_mysql_db = "clickhouse"
2022-04-04 18:49:30 +00:00
2022-04-05 16:46:54 +00:00
odbc_psql_db = "postgres"
odbc_psql_user = "postgres"
odbc_psql_pass = "mysecretpassword"