Skip to content

Commit 656db23

Browse files
authored
Bump version to 2.19.2 (#198)
This PR updates the OSD version to 2.19.2 Also fixes the broken test_charm integration test
1 parent 1301959 commit 656db23

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

src/literals.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
"""Collection of global literals for the charm."""
66

7-
OPENSEARCH_DASHBOARDS_SNAP_REVISION = "30"
7+
OPENSEARCH_DASHBOARDS_SNAP_REVISION = "41"
88

99
SUBSTRATE = "vm"
1010
CHARM_KEY = "opensearch-dashboards"
@@ -21,10 +21,10 @@
2121

2222
DEPENDENCIES = {
2323
"osd_upstream": {
24-
"dependencies": {"opensearch": "2.19.1"},
24+
"dependencies": {"opensearch": "2.19.2"},
2525
"name": "opensearch-dashboards",
2626
"upgrade_supported": ">=2",
27-
"version": "2.19.1",
27+
"version": "2.19.2",
2828
},
2929
}
3030

tests/integration/test_charm.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
""",
4848
}
4949
COS_AGENT_APP_NAME = "grafana-agent"
50+
COS_CHANNEL = "1/stable"
5051
COS_AGENT_RELATION_NAME = "cos-agent"
5152
DB_CLIENT_APP_NAME = "application"
5253

@@ -67,7 +68,7 @@ async def test_build_and_deploy(
6768
await ops_test.model.set_config(OPENSEARCH_CONFIG)
6869

6970
config = {"ca-common-name": "CN_CA"}
70-
await ops_test.model.deploy(COS_AGENT_APP_NAME, series=series)
71+
await ops_test.model.deploy(COS_AGENT_APP_NAME, channel=COS_CHANNEL, series=series)
7172
await ops_test.model.deploy(
7273
OPENSEARCH_APP_NAME,
7374
channel="2/edge",

0 commit comments

Comments
 (0)