From a7ed0cb08006711792f63aa630617ab5c2139227 Mon Sep 17 00:00:00 2001 From: Dario Faccin Date: Fri, 22 May 2026 09:30:45 +0200 Subject: [PATCH] chore: pin charm dependencies in tests (track/2.4) --- tests/integration/charms_dependencies.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/charms_dependencies.py b/tests/integration/charms_dependencies.py index cb5a451..ab93512 100644 --- a/tests/integration/charms_dependencies.py +++ b/tests/integration/charms_dependencies.py @@ -2,13 +2,13 @@ from charmed_kubeflow_chisme.testing import CharmSpec -MLMD = CharmSpec(charm="mlmd", channel="latest/edge", trust=True) +MLMD = CharmSpec(charm="mlmd", channel="ckf-1.10/edge", trust=True) ISTIO_GATEWAY = CharmSpec( - charm="istio-gateway", channel="latest/edge", config={"kind": "ingress"}, trust=True + charm="istio-gateway", channel="1.28/edge", config={"kind": "ingress"}, trust=True ) ISTIO_PILOT = CharmSpec( charm="istio-pilot", - channel="latest/edge", + channel="1.28/edge", config={"default-gateway": "kubeflow-gateway"}, trust=True, )