You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
600 B
20 lines
600 B
--- |
|
elasticsearch_replicas: 1 |
|
|
|
postgres_service_name: 'postgresdb' |
|
postgres_replicas: 1 |
|
postgres_conductor_db: postgres |
|
postgres_jdbc_user: conductor |
|
postgres_jdbc_pass: password |
|
postgres_jdbc_db: conductor |
|
postgres_jdbc_url: jdbc:postgresql://{{ postgres_service_name }}:5432/{{ mysql_jdbc_db }} |
|
|
|
mysql_image_name: 'mariadb' |
|
mysql_service_name: 'mysqldb' |
|
mysql_replicas: 1 |
|
mysql_conductor_db: mysql |
|
mysql_jdbc_user: conductor |
|
mysql_jdbc_pass: password |
|
mysql_jdbc_db: conductor |
|
mysql_jdbc_url: jdbc:mysql://{{ mysql_service_name }}:3306/{{ mysql_jdbc_db }}?useSSL=false&allowPublicKeyRetrieval=true |
|
|
|
|