diff --git a/releases/2.1/beta/mlflow/bundle.yaml b/releases/2.1/beta/mlflow/bundle.yaml index edec7c98..43960b2f 100644 --- a/releases/2.1/beta/mlflow/bundle.yaml +++ b/releases/2.1/beta/mlflow/bundle.yaml @@ -10,7 +10,9 @@ applications: _github_repo_name: minio-operator mlflow-mysql: charm: mysql-k8s - channel: 8.0/stable + # 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 trust: true _github_repo_name: mysql-k8s-operator diff --git a/releases/2.1/edge/mlflow/bundle.yaml b/releases/2.1/edge/mlflow/bundle.yaml index 3c87c756..8e4743a3 100644 --- a/releases/2.1/edge/mlflow/bundle.yaml +++ b/releases/2.1/edge/mlflow/bundle.yaml @@ -10,7 +10,9 @@ applications: _github_repo_name: minio-operator mlflow-mysql: charm: mysql-k8s - channel: 8.0/stable + # 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 trust: true _github_repo_name: mysql-k8s-operator diff --git a/releases/2.1/stable/mlflow/bundle.yaml b/releases/2.1/stable/mlflow/bundle.yaml index d1081cb2..c57c59e0 100644 --- a/releases/2.1/stable/mlflow/bundle.yaml +++ b/releases/2.1/stable/mlflow/bundle.yaml @@ -10,7 +10,9 @@ applications: _github_repo_name: minio-operator mlflow-mysql: charm: mysql-k8s - channel: 8.0/stable + # 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 trust: true _github_repo_name: mysql-k8s-operator diff --git a/releases/latest/beta/mlflow/bundle.yaml b/releases/latest/beta/mlflow/bundle.yaml index 4fd83697..2c7feb64 100644 --- a/releases/latest/beta/mlflow/bundle.yaml +++ b/releases/latest/beta/mlflow/bundle.yaml @@ -10,7 +10,9 @@ applications: _github_repo_name: minio-operator mlflow-mysql: charm: mysql-k8s - channel: 8.0/stable + # 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 trust: true _github_repo_name: mysql-k8s-operator diff --git a/releases/latest/edge/mlflow/bundle.yaml b/releases/latest/edge/mlflow/bundle.yaml index 2f78a11f..7b107b00 100644 --- a/releases/latest/edge/mlflow/bundle.yaml +++ b/releases/latest/edge/mlflow/bundle.yaml @@ -10,7 +10,9 @@ applications: _github_repo_name: minio-operator mlflow-mysql: charm: mysql-k8s - channel: 8.0/stable + # 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 trust: true _github_repo_name: mysql-k8s-operator diff --git a/releases/latest/stable/mlflow/bundle.yaml b/releases/latest/stable/mlflow/bundle.yaml index 0166a896..5b0023df 100644 --- a/releases/latest/stable/mlflow/bundle.yaml +++ b/releases/latest/stable/mlflow/bundle.yaml @@ -10,7 +10,9 @@ applications: _github_repo_name: minio-operator mlflow-mysql: charm: mysql-k8s - channel: 8.0/stable + # 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 trust: true _github_repo_name: mysql-k8s-operator diff --git a/tests/integration/test_charm.py b/tests/integration/test_charm.py index fda981c4..6059d8f9 100644 --- a/tests/integration/test_charm.py +++ b/tests/integration/test_charm.py @@ -183,7 +183,9 @@ async def test_add_relational_db_with_relation_expect_active(self, ops_test: Ops ) await ops_test.model.deploy( RELATIONAL_DB_CHARM_NAME, - channel="8.0/stable", + # 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", series="jammy", trust=True, )