From 454624acaa99846316f03b53e16fe6170584ed2e Mon Sep 17 00:00:00 2001 From: guillaume Date: Tue, 31 Oct 2023 09:31:41 +0200 Subject: [PATCH 1/2] feat: Bumps MongoDB version --- README.md | 2 +- tests/integration/test_integration.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c104cd3..7e162c3 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Charmed Operator for the SD-Core Session Management Function (SMF). # Usage ```bash -juju deploy mongodb-k8s --channel 5/edge --trust +juju deploy mongodb-k8s --channel 6/edge --trust juju deploy sdcore-smf --channel edge --trust juju deploy sdcore-nrf --channel edge --trust juju deploy self-signed-certificates --channel=beta diff --git a/tests/integration/test_integration.py b/tests/integration/test_integration.py index 2aeaf13..da516e3 100644 --- a/tests/integration/test_integration.py +++ b/tests/integration/test_integration.py @@ -27,7 +27,7 @@ async def _deploy_database(ops_test: OpsTest): await ops_test.model.deploy( DATABASE_APP_NAME, application_name=DATABASE_APP_NAME, - channel="5/edge", + channel="6/edge", trust=True, ) From 78a9c44b3a10965e2634cc06b5312d376c49c8e7 Mon Sep 17 00:00:00 2001 From: Guillaume Belanger Date: Tue, 2 Jan 2024 15:38:21 -0500 Subject: [PATCH 2/2] chore: Bumps to mongodb 6/beta --- README.md | 2 +- tests/integration/test_integration.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7e162c3..99fbd67 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Charmed Operator for the SD-Core Session Management Function (SMF). # Usage ```bash -juju deploy mongodb-k8s --channel 6/edge --trust +juju deploy mongodb-k8s --channel 6/beta --trust juju deploy sdcore-smf --channel edge --trust juju deploy sdcore-nrf --channel edge --trust juju deploy self-signed-certificates --channel=beta diff --git a/tests/integration/test_integration.py b/tests/integration/test_integration.py index da516e3..50ad7a6 100644 --- a/tests/integration/test_integration.py +++ b/tests/integration/test_integration.py @@ -27,7 +27,7 @@ async def _deploy_database(ops_test: OpsTest): await ops_test.model.deploy( DATABASE_APP_NAME, application_name=DATABASE_APP_NAME, - channel="6/edge", + channel="6/beta", trust=True, )