Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit e81dc51

Browse files
authored
fix: temp comment out readyz check on startup (#154)
This causes an error with Kubernetes API responding with goaway (http2) Signed-off-by: Attila Mészáros <csviri@gmail.com>
1 parent ea9b2e5 commit e81dc51

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/src/main/java/io/javaoperatorsdk/jenvtest/process/KubeAPIServerProcess.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ public void waitUntilReady() {
8989
var readinessChecker = new ProcessReadinessChecker();
9090
var timeout = config.getStartupTimeout();
9191
var startTime = System.currentTimeMillis();
92-
readinessChecker.waitUntilReady(apiServerPort, "readyz", KUBE_API_SERVER, true, timeout);
92+
// the 1.29.0 binary has issue with this. Will temporarily comment out and further investigate.
93+
// But with this now all the executions are failing
94+
// readinessChecker.waitUntilReady(apiServerPort, "readyz", KUBE_API_SERVER, true, timeout);
9395
int newTimout = (int) (timeout - (System.currentTimeMillis() - startTime));
9496
readinessChecker.waitUntilDefaultNamespaceAvailable(apiServerPort, binaryManager, certManager,
9597
config, newTimout);

0 commit comments

Comments
 (0)