We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41de6ee commit 9e7dfdfCopy full SHA for 9e7dfdf
sample-operators/leader-election/src/test/java/io/javaoperatorsdk/operator/sample/LeaderElectionE2E.java
@@ -128,6 +128,8 @@ private void deployOperatorsInOrder() {
128
applyResources("k8s/operator.yaml");
129
await().atMost(Duration.ofSeconds(POD_STARTUP_TIMEOUT)).untilAsserted(() -> {
130
var pod = client.pods().inNamespace(namespace).withName(OPERATOR_1_POD_NAME).get();
131
+ log.info("Operator 1: {}",pod);
132
+
133
assertThat(pod.getStatus().getContainerStatuses().get(0).getReady()).isTrue();
134
});
135
0 commit comments