Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use mysql-k8s 8.0/edge in the integration tests and bundles #225

Merged
merged 3 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion releases/2.1/beta/mlflow/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion releases/2.1/edge/mlflow/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion releases/2.1/stable/mlflow/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion releases/latest/beta/mlflow/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion releases/latest/edge/mlflow/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion releases/latest/stable/mlflow/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion tests/integration/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down
Loading