Skip to content

Commit

Permalink
Install FLink and Cert-manager in test in parallel
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Stejskal <[email protected]>
  • Loading branch information
Frawless committed Aug 1, 2024
1 parent fa77f26 commit 44aa1a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/io/streams/e2e/dummy/DummyST.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ void installDebeziumFromManifestsTest() throws IOException {
@Test
void installFlinkAndCertManagerFromManifestsTest() throws IOException {
CompletableFuture.allOf(
CertManagerInstaller.install()).join();
CertManagerInstaller.install(),
FlinkManifestInstaller.install()).join();

assertTrue(KubeResourceManager.getKubeClient().getClient().apps()
.deployments().inNamespace(CertManagerInstaller.OPERATOR_NS)
.withName(CertManagerInstaller.DEPLOYMENT_NAME).isReady());

CompletableFuture.allOf(
FlinkManifestInstaller.install()).join();
assertTrue(KubeResourceManager.getKubeClient().getClient().apps()
.deployments().inNamespace(FlinkManifestInstaller.OPERATOR_NS)
.withName(FlinkManifestInstaller.DEPLOYMENT_NAME).isReady());
Expand Down

0 comments on commit 44aa1a8

Please sign in to comment.