diff --git a/charms/kfp-api/tests/integration/test_charm.py b/charms/kfp-api/tests/integration/test_charm.py index 1364d25f..d3ae3ba0 100644 --- a/charms/kfp-api/tests/integration/test_charm.py +++ b/charms/kfp-api/tests/integration/test_charm.py @@ -77,9 +77,11 @@ async def test_build_and_deploy(self, ops_test: OpsTest): async def test_relational_db_relation_with_mysql_relation(self, ops_test: OpsTest): """Test failure of addition of relational-db relation with mysql relation present.""" # deploy mysql-k8s charm + # We should use `8.0/stable` once changes for + # https://github.com/canonical/mysql-k8s-operator/issues/337 are published there. await ops_test.model.deploy( "mysql-k8s", - channel="8.0/stable", + channel="8.0/edge", config={"profile": "testing"}, trust=True, ) diff --git a/tests/integration/bundles/kfp_1.7_stable_install.yaml.j2 b/tests/integration/bundles/kfp_1.7_stable_install.yaml.j2 index d6c3201d..0664a465 100644 --- a/tests/integration/bundles/kfp_1.7_stable_install.yaml.j2 +++ b/tests/integration/bundles/kfp_1.7_stable_install.yaml.j2 @@ -23,8 +23,8 @@ applications: default-gateway: kubeflow-gateway trust: true kfp-db: - charm: mysql-k8s - channel: 8.0/stable + charm: mysql-k8s # We should use `8.0/stable` once changes for https://github.com/canonical/mysql-k8s-operator/issues/337 are published there. + channel: 8.0/edge scale: 1 options: profile: testing diff --git a/tests/integration/bundles/kfp_latest_edge.yaml.j2 b/tests/integration/bundles/kfp_latest_edge.yaml.j2 index 6e42dc73..abeb0c40 100644 --- a/tests/integration/bundles/kfp_latest_edge.yaml.j2 +++ b/tests/integration/bundles/kfp_latest_edge.yaml.j2 @@ -4,7 +4,8 @@ applications: argo-controller: { charm: ch:argo-controller, channel: latest/edge, scale: 1, trust: true } metacontroller-operator: { charm: ch:metacontroller-operator, channel: latest/edge, scale: 1, trust: true } minio: { charm: ch:minio, channel: latest/edge, scale: 1 } - kfp-db: { charm: ch:mysql-k8s, channel: 8.0/stable, scale: 1, constraints: mem=2G, trust: true } + # We should use `8.0/stable` once changes for https://github.com/canonical/mysql-k8s-operator/issues/337 are published there. + kfp-db: { charm: ch:mysql-k8s, channel: 8.0/edge, scale: 1, constraints: mem=2G, trust: true } mlmd: { charm: ch:mlmd, channel: latest/edge, scale: 1 } envoy: { charm: ch:envoy, channel: latest/edge, scale: 1 } kubeflow-profiles: { charm: ch:kubeflow-profiles, channel: latest/edge, scale: 1, trust: true }