8607ff7d81
This moves review02 out of the review-staging group and into the main review group. At this point, review01.openstack.org is inactive so we can remove all references to openstack.org from the groups. We update the system-config job to run against a focal production server, and remove the unneeded rsync setup used to move data. This additionally enables replication; this should be a no-op when applied as part of the transition process is to manually apply this, so that DNS setup can pull zone changes from opendev.org. It also switches to the mysql connector, as noted inline we found some issues with mariadb. Note backups follow in a separate step to avoid doing too much at once, hence dropping the backup group from the testing list. Change-Id: I7ee3e3051ea8f3237fd5f6bf1dcc3e5996c16d10
19 lines
1.1 KiB
Django/Jinja
19 lines
1.1 KiB
Django/Jinja
{% if gerrit_reviewdb_database_type == 'mysql' %}
|
|
[accountPatchReviewDb]
|
|
url = jdbc:mysql://{{ gerrit_mysql_host }}:3306/accountPatchReviewDb?characterSetResults=utf8&characterEncoding=utf8&connectionCollation=utf8_bin&useUnicode=yes&user=gerrit2&password={{ gerrit_mysql_password }}
|
|
{% endif %}
|
|
{% if gerrit_reviewdb_database_type == 'mariadb_container' %}
|
|
[accountPatchReviewDb]
|
|
# NOTE(ianw) 2021-07-19 : the mariadb connector throws errors because
|
|
# it doesn't seem to handle duplicate key detection. Investigation
|
|
# upstream TBC.
|
|
url = jdbc:mysql://127.0.0.1:3306/{{ gerrit_reviewdb_mariadb_dbname }}?sessionVariables=character_set_client=utf8,character_set_results=utf8,character_set_connection=utf8,collation_connection=utf8_unicode_ci,collation_database=utf8_unicode_ci,collation_server=utf8_unicode_ci&user={{ gerrit_reviewdb_mariadb_username }}&password={{ gerrit_reviewdb_mariadb_password }}
|
|
{% endif %}
|
|
[auth]
|
|
registerEmailPrivateKey = {{ gerrit_email_private_key }}
|
|
{% if gerrit_rest_token_private_key is defined %}
|
|
restTokenPrivateKey = {{ gerrit_rest_token_private_key }}
|
|
{% endif %}
|
|
[its-storyboard]
|
|
password = {{ gerrit_storyboard_token }}
|