Skip to content

Commit

Permalink
pin self-signed-certificates charm to revision 163
Browse files Browse the repository at this point in the history
  • Loading branch information
deusebio committed Oct 1, 2024
1 parent 3100270 commit 1134475
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tests/integration/test_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,9 @@ async def test_connection_updated_on_tls_enabled(ops_test: OpsTest, app_charm):

# deploying tls
tls_config = {"ca-common-name": "kafka"}
await ops_test.model.deploy(TLS_NAME, channel="edge", config=tls_config, series="jammy")
await ops_test.model.deploy(
TLS_NAME, channel="edge", config=tls_config, series="jammy", revision=163
)
await ops_test.model.wait_for_idle(
apps=[TLS_NAME], idle_period=30, timeout=1800, status="active"
)
Expand Down
4 changes: 3 additions & 1 deletion tests/integration/test_tls.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ async def test_deploy_tls(ops_test: OpsTest, kafka_charm):
tls_config = {"ca-common-name": "kafka"}

await asyncio.gather(
ops_test.model.deploy(TLS_NAME, channel="edge", config=tls_config, series="jammy"),
ops_test.model.deploy(
TLS_NAME, channel="edge", config=tls_config, series="jammy", revision=163
),
ops_test.model.deploy(
ZK, channel="edge", revision=137, series="jammy", application_name=ZK
),
Expand Down

0 comments on commit 1134475

Please sign in to comment.