Skip to content

Commit

Permalink
chore(deps): update dependency ops to v2.17.0 (#15)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency ops to v2.17.0

* fix minio deployment

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Weii Wang <[email protected]>
Co-authored-by: Arturo Seijas <[email protected]>
  • Loading branch information
3 people authored Nov 8, 2024
1 parent ac05a91 commit 8e0ab0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ops==2.16.1
ops==2.17.0
dnspython==2.7.0
jsonschema==4.23.0
requests==2.32.3
Expand Down
4 changes: 3 additions & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ async def minio_fixture(get_unit_ips, load_kube_config, ops_test: OpsTest):
"""Deploy test minio service."""
key = "minioadmin"
assert ops_test.model
minio = await ops_test.model.deploy("minio", config={"access-key": key, "secret-key": key})
minio = await ops_test.model.deploy(
"minio", channel="ckf-1.9/stable", config={"access-key": key, "secret-key": key}
)
await ops_test.model.wait_for_idle(apps=[minio.name])
ip = (await get_unit_ips(minio.name))[0]
s3 = boto3.client(
Expand Down

0 comments on commit 8e0ab0c

Please sign in to comment.