Skip to content

Commit

Permalink
chore: Uses stable release of self-signed certificates (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
gruyaume authored Jan 15, 2024
1 parent 9274bf4 commit f35aef2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions tests/integration/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)


Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit f35aef2

Please sign in to comment.