Skip to content

Commit

Permalink
Use latests strimzi olm in dummy tests (#27)
Browse files Browse the repository at this point in the history
Signed-off-by: David Kornel <[email protected]>
  • Loading branch information
kornys authored Aug 27, 2024
1 parent a268fbb commit 3ce6851
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/java/io/streams/e2e/dummy/DummyST.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,22 +85,22 @@ void installStrimziFromManifestsTest() throws IOException {
void installStrimziByOlmCatalogTest() {
CompletableFuture.allOf(
StrimziOlmCatalogInstaller.install("strimzi-kafka-operator", "strimzi-olm",
"strimzi-cluster-operator.v0.42.0", "stable", "operatorhubio-catalog", "olm")
"strimzi-cluster-operator.v0.43.0", "stable", "operatorhubio-catalog", "olm")
).join();
assertTrue(KubeResourceManager.getKubeClient().getClient().apps()
.deployments().inNamespace("strimzi-olm")
.withName("strimzi-cluster-operator-v0.42.0").isReady());
.withName("strimzi-cluster-operator-v0.43.0").isReady());
}

@Test
void installStrimziByOlmBundleTest() {
CompletableFuture.allOf(
StrimziOlmBundleInstaller.install("strimzi-kafka-operator", "strimzi-olm",
"quay.io/operatorhubio/strimzi-kafka-operator:v0.42.0--20240710T183231")
"quay.io/operatorhubio/strimzi-kafka-operator:v0.43.0--20240823T152242")
).join();
assertTrue(KubeResourceManager.getKubeClient().getClient().apps()
.deployments().inNamespace("strimzi-olm")
.withName("strimzi-cluster-operator-v0.42.0").isReady());
.withName("strimzi-cluster-operator-v0.43.0").isReady());
}

@Test
Expand Down

0 comments on commit 3ce6851

Please sign in to comment.