diff --git a/README.md b/README.md index 626eba3..3c18352 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Juju model on a Kubernetes Cluster. juju deploy sdcore-amf-k8s --trust --channel=edge juju deploy mongodb-k8s --trust --channel=6/beta juju deploy sdcore-nrf-k8s --channel=edge -juju deploy self-signed-certificates --channel=beta +juju deploy self-signed-certificates --channel=stable juju integrate sdcore-nrf-k8s:database mongodb-k8s juju integrate sdcore-nrf-k8s:certificates self-signed-certificates:certificates juju integrate sdcore-amf-k8s:database mongodb-k8s diff --git a/tests/integration/test_integration.py b/tests/integration/test_integration.py index d286880..794d9d2 100644 --- a/tests/integration/test_integration.py +++ b/tests/integration/test_integration.py @@ -47,7 +47,9 @@ async def build_and_deploy(ops_test: OpsTest): trust=True, ) await ops_test.model.deploy( - TLS_PROVIDER_CHARM_NAME, application_name=TLS_PROVIDER_CHARM_NAME, channel="beta" + TLS_PROVIDER_CHARM_NAME, + application_name=TLS_PROVIDER_CHARM_NAME, + channel="stable", ) @@ -115,8 +117,7 @@ async def test_restore_tls_and_wait_for_active_status(ops_test: OpsTest, build_a await ops_test.model.deploy( TLS_PROVIDER_CHARM_NAME, application_name=TLS_PROVIDER_CHARM_NAME, - channel="beta", - trust=True, + channel="stable", ) await ops_test.model.integrate(relation1=APP_NAME, relation2=TLS_PROVIDER_CHARM_NAME) await ops_test.model.wait_for_idle(apps=[APP_NAME], status="active", timeout=1000)