Skip to content

Commit

Permalink
chore: move to channel 6/stable in mongodb
Browse files Browse the repository at this point in the history
  • Loading branch information
patriciareinoso committed Nov 21, 2024
1 parent d7484d8 commit b5d088f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A Charmed Operator for Aether SD-Core's Unified Data Repository (UDR) component
## Usage

```bash
juju deploy mongodb-k8s --trust --channel=6/beta
juju deploy mongodb-k8s --trust --channel=6/stable
juju deploy sdcore-nrf-k8s --channel=1.5/edge
juju deploy sdcore-udr-k8s --channel=1.5/edge
juju deploy self-signed-certificates
Expand Down
10 changes: 3 additions & 7 deletions tests/integration/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
APPLICATION_NAME = METADATA["name"]

DATABASE_CHARM_NAME = "mongodb-k8s"
DATABASE_CHARM_CHANNEL = "6/beta"
DATABASE_CHARM_CHANNEL = "6/stable"
NRF_CHARM_NAME = "sdcore-nrf-k8s"
NRF_CHARM_CHANNEL = "1.5/edge"
NMS_CHARM_NAME = "sdcore-nms-k8s"
Expand Down Expand Up @@ -131,18 +131,14 @@ async def test_restore_tls_and_wait_for_active_status(self, ops_test: OpsTest, d
await ops_test.model.integrate(relation1=NRF_CHARM_NAME, relation2=TLS_CHARM_NAME)
await ops_test.model.wait_for_idle(apps=[APPLICATION_NAME], status="active", timeout=300)

@pytest.mark.skip(
reason="Bug in MongoDB: https://github.com/canonical/mongodb-k8s-operator/issues/218"
)

@pytest.mark.abort_on_fail
async def test_remove_database_and_wait_for_blocked_status(self, ops_test: OpsTest, deploy):
assert ops_test.model
await ops_test.model.remove_application(DATABASE_CHARM_NAME, block_until_done=True)
await ops_test.model.wait_for_idle(apps=[APPLICATION_NAME], status="blocked", timeout=60)

@pytest.mark.skip(
reason="Bug in MongoDB: https://github.com/canonical/mongodb-k8s-operator/issues/218"
)

@pytest.mark.abort_on_fail
async def test_restore_database_and_wait_for_active_status(self, ops_test: OpsTest, deploy):
assert ops_test.model
Expand Down

0 comments on commit b5d088f

Please sign in to comment.