We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 280dfd4 + 44ba691 commit 0f4052fCopy full SHA for 0f4052f
tests/model_explainability/trustyai_service/conftest.py
@@ -208,6 +208,11 @@ def mariadb(
208
mariadb_dict["spec"]["username"] = DB_USERNAME
209
210
mariadb_dict["spec"]["replicas"] = 1
211
+
212
+ # Need to fix MariaDB version due to an issue with the default version in certain environments
213
+ # Using the same registry and image used by the MariaDB operator
214
+ # --just changing the tag to point to a stable version
215
+ mariadb_dict["spec"]["image"] = "docker-registry1.mariadb.com/library/mariadb:10.11.8"
216
mariadb_dict["spec"]["galera"]["enabled"] = False
217
mariadb_dict["spec"]["metrics"]["enabled"] = False
218
mariadb_dict["spec"]["tls"] = {"enabled": True, "required": True}
0 commit comments