Skip to content

Commit ccf2477

Browse files
fix: change mariadb version (#738) (#739)
Co-authored-by: Adolfo Aguirrezabal <aaguirre@redhat.com>
1 parent 98db810 commit ccf2477

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/model_explainability/trustyai_service/conftest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,11 @@ def mariadb(
208208
mariadb_dict["spec"]["username"] = DB_USERNAME
209209

210210
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"
211216
mariadb_dict["spec"]["galera"]["enabled"] = False
212217
mariadb_dict["spec"]["metrics"]["enabled"] = False
213218
mariadb_dict["spec"]["tls"] = {"enabled": True, "required": True}

0 commit comments

Comments
 (0)