File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1313from tests .model_registry .utils import get_endpoint_from_mr_service , get_mr_service_by_label
1414from utilities .infra import create_ns
1515from utilities .constants import Annotations , Protocols
16+ from .constants import MR_DB_IMAGE_DIGEST
1617
1718
1819LOGGER = get_logger (name = __name__ )
@@ -186,7 +187,7 @@ def model_registry_db_deployment(
186187 "/var/lib/mysql/datadir" ,
187188 "--default-authentication-plugin=mysql_native_password" ,
188189 ],
189- "image" : "public.ecr.aws/docker/library/mysql:8.3.0" ,
190+ "image" : MR_DB_IMAGE_DIGEST ,
190191 "imagePullPolicy" : "IfNotPresent" ,
191192 "livenessProbe" : {
192193 "exec" : {
Original file line number Diff line number Diff line change 11class ModelRegistryEndpoints :
22 REGISTERED_MODELS : str = "/api/model_registry/v1alpha3/registered_models"
3+
4+
5+ MR_DB_IMAGE_DIGEST : str = (
6+ "public.ecr.aws/docker/library/mysql@sha256:9de9d54fecee6253130e65154b930978b1fcc336bcc86dfd06e89b72a2588ebe"
7+ )
You can’t perform that action at this time.
0 commit comments