diff --git a/README.md b/README.md index f88a717..00be913 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,10 @@ A Charmed Operator for SD-Core's Policy Control Function (PCF) component for K8s ## Usage ```bash -juju deploy mongodb-k8s --channel 5/edge --trust +juju deploy mongodb-k8s --channel 6/beta --trust juju deploy sdcore-nrf-k8s --channel edge juju deploy sdcore-pcf-k8s --channel edge + juju deploy self-signed-certificates --channel=beta juju integrate sdcore-pcf-k8s mongodb-k8s diff --git a/tests/integration/test_integration.py b/tests/integration/test_integration.py index 3fa7261..6aba2f0 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/beta", trust=True, )