Skip to content

Commit

Permalink
Merge branch 'kf-4432-fix-cherry-pick-images-config' of github.com:ca…
Browse files Browse the repository at this point in the history
…nonical/istio-operators into kf-4432-fix-cherry-pick-images-config
  • Loading branch information
Ivan Chvets committed Sep 26, 2023
2 parents e567356 + 17ba45f commit 157bb6c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion tests/test_cos_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,17 @@ async def test_prometheus_grafana_integration_istio_pilot(ops_test: OpsTest):
scrape_config = {"scrape_interval": "30s"}

# Deploy and relate prometheus
await ops_test.model.deploy(prometheus, channel="latest/stable", trust=True)
# FIXME: Unpin revision once https://github.com/canonical/bundle-kubeflow/issues/688 is closed
await ops_test.juju(
"deploy",
prometheus,
"--channel",
"latest/edge",
"--revision",
"137",
"--trust",
check=True,
)
await ops_test.model.deploy(prometheus_scrape, channel="latest/stable", config=scrape_config)

await ops_test.model.add_relation(ISTIO_PILOT, prometheus_scrape)
Expand Down

0 comments on commit 157bb6c

Please sign in to comment.