Refactor MariaDB role to stabilize initialization:

- Unify encoding/collation variables
- Improve connection logic for mysql_db module
- Switch to PyMySQL install path to avoid mysqlclient build failures
- Update healthcheck to container-friendly CMD-SHELL usage
- Normalize network and port configuration

These changes were applied during CI/CD pipeline debugging. The root CI/CD connectivity issue is still not fixed.

Reference: https://chatgpt.com/share/6931adf0-ce7c-800f-86f3-f867fbd3191f
This commit is contained in:
2025-12-04 16:52:43 +01:00
parent 5f0dfa616f
commit 86dd36930f
6 changed files with 75 additions and 39 deletions

View File

@@ -17,7 +17,12 @@
- "data:/var/lib/mysql"
{% include 'roles/docker-container/templates/networks.yml.j2' %}
healthcheck:
test: "/usr/bin/mariadb --user=root --password={{ MARIADB_ROOT_PWD }} --execute \"SHOW DATABASES;\""
test:
- "CMD-SHELL"
- >
mariadb
{% if MARIADB_EXPOSE_LOCAL %}-h127.0.0.1 -P3306{% endif %}
-u root -p{{ MARIADB_ROOT_PWD }} -e 'SHOW DATABASES;'
interval: 10s
timeout: 5s
retries: 18