From 34fb7b82a0448a0b2256575eca9a01402a081456 Mon Sep 17 00:00:00 2001 From: guillaume Date: Tue, 31 Oct 2023 09:33:17 +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 abd216b..7929126 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ A Charmed Operator for SD-Core's Policy Control Function (PCF) component. ## Usage ```bash -juju deploy mongodb-k8s --channel 5/edge --trust +juju deploy mongodb-k8s --channel 6/edge --trust juju deploy sdcore-nrf --channel edge --trust juju deploy sdcore-pcf --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 0729d7f..7cda263 100644 --- a/tests/integration/test_integration.py +++ b/tests/integration/test_integration.py @@ -24,7 +24,7 @@ async def _deploy_database(ops_test: OpsTest): await ops_test.model.deploy( # type: ignore[union-attr] DATABASE_APP_NAME, application_name=DATABASE_APP_NAME, - channel="5/edge", + channel="6/edge", trust=True, ) From 51ce7b0590dc28b2ff4b5ad0eacb87f60968630d Mon Sep 17 00:00:00 2001 From: Guillaume Belanger Date: Tue, 2 Jan 2024 15:35:26 -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 7929126..4ef4ec3 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ A Charmed Operator for SD-Core's Policy Control Function (PCF) component. ## Usage ```bash -juju deploy mongodb-k8s --channel 6/edge --trust +juju deploy mongodb-k8s --channel 6/beta --trust juju deploy sdcore-nrf --channel edge --trust juju deploy sdcore-pcf --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 7cda263..fa0745e 100644 --- a/tests/integration/test_integration.py +++ b/tests/integration/test_integration.py @@ -24,7 +24,7 @@ async def _deploy_database(ops_test: OpsTest): await ops_test.model.deploy( # type: ignore[union-attr] DATABASE_APP_NAME, application_name=DATABASE_APP_NAME, - channel="6/edge", + channel="6/beta", trust=True, )