From fa374a4c488243483c236d35e52dd9541e10a6ae Mon Sep 17 00:00:00 2001 From: Guillaume Belanger Date: Tue, 2 Jan 2024 15:54:37 -0500 Subject: [PATCH] chore: Bumps mondodb version to 6/edge --- README.md | 2 +- tests/integration/test_integration.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1756ca9..626eba3 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Juju model on a Kubernetes Cluster. ```bash juju deploy sdcore-amf-k8s --trust --channel=edge -juju deploy mongodb-k8s --trust --channel=5/edge +juju deploy mongodb-k8s --trust --channel=6/beta juju deploy sdcore-nrf-k8s --channel=edge juju deploy self-signed-certificates --channel=beta juju integrate sdcore-nrf-k8s:database mongodb-k8s diff --git a/tests/integration/test_integration.py b/tests/integration/test_integration.py index 266efcc..e493214 100644 --- a/tests/integration/test_integration.py +++ b/tests/integration/test_integration.py @@ -37,7 +37,7 @@ async def build_and_deploy(ops_test: OpsTest): await ops_test.model.deploy( DB_CHARM_NAME, application_name=DB_CHARM_NAME, - channel="5/edge", + channel="6/edge", trust=True, ) await ops_test.model.deploy( @@ -141,7 +141,7 @@ async def test_restore_database_and_wait_for_active_status(ops_test: OpsTest, bu await ops_test.model.deploy( DB_CHARM_NAME, application_name=DB_CHARM_NAME, - channel="5/edge", + channel="6/edge", trust=True, ) await ops_test.model.integrate(relation1=APP_NAME, relation2=DB_CHARM_NAME)