Skip to content

Commit

Permalink
fix-ref
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiobrz committed Nov 18, 2024
1 parent e052d68 commit 434304f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,14 @@ public void deploy() {
.reason("Wait for expected number of replicas to be active.")
.level(Level.DEBUG)
.waitFor();
Kuberneteses.adminBinary().execute("get", "all", "-o yaml");
Kuberneteses.adminBinary().execute("get", "svc", "hyperfoil", "-o yaml");
Kuberneteses.adminBinary().execute("get", "all", "-o", "yaml");
Kuberneteses.adminBinary().execute("get", "svc", "hyperfoil", "-o", "yaml");

new SimpleWaiter(
() -> Https.getCode(getURL().toExternalForm()) == 200)
.reason("Wait until the route is ready to serve.")
.level(Level.DEBUG)
.timeout(TimeUnit.SECONDS, 120)
.waitFor();
}

Expand Down

0 comments on commit 434304f

Please sign in to comment.