Skip to content

Commit

Permalink
Merge pull request #234 from canonical/nohaihab-fix-ci-issues
Browse files Browse the repository at this point in the history
fix: merge dev branch to fix CI issues
  • Loading branch information
NohaIhab authored Mar 15, 2024
2 parents a5e5cb4 + 17910f9 commit 2f0f334
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Maximise GH runner space
uses: easimon/maximize-build-space@v8
with:
root-reserve-mb: 40960
root-reserve-mb: 29696
remove-dotnet: 'true'
remove-haskell: 'true'
remove-android: 'true'
Expand Down
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
8 changes: 5 additions & 3 deletions 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 Expand Up @@ -297,7 +299,7 @@ async def test_can_create_experiment_with_mlflow_library(self, ops_test: OpsTest
async def test_deploy_resource_dispatcher(self, ops_test: OpsTest):
await ops_test.model.deploy(
entity_url=METACONTROLLER_CHARM_NAME,
channel="latest/edge",
channel="3.0/stable",
trust=True,
)
await ops_test.model.wait_for_idle(
Expand All @@ -308,7 +310,7 @@ async def test_deploy_resource_dispatcher(self, ops_test: OpsTest):
timeout=120,
)
await ops_test.model.deploy(
RESOURCE_DISPATCHER_CHARM_NAME, channel="latest/edge", trust=True
RESOURCE_DISPATCHER_CHARM_NAME, channel="1.0/stable", trust=True
)
await ops_test.model.wait_for_idle(
apps=[CHARM_NAME],
Expand Down

0 comments on commit 2f0f334

Please sign in to comment.