File tree 1 file changed +2
-0
lines changed
sample-operators/leader-election/src/test/java/io/javaoperatorsdk/operator/sample
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -138,13 +138,15 @@ private void deployOperatorsInOrder(String yamlFilePrefix) {
138
138
applyResources ("k8s/" + yamlFilePrefix + "operator.yaml" );
139
139
await ().atMost (Duration .ofSeconds (POD_STARTUP_TIMEOUT )).untilAsserted (() -> {
140
140
var pod = client .pods ().inNamespace (namespace ).withName (OPERATOR_1_POD_NAME ).get ();
141
+ assertThat (pod .getStatus ().getContainerStatuses ()).isNotEmpty ();
141
142
assertThat (pod .getStatus ().getContainerStatuses ().get (0 ).getReady ()).isTrue ();
142
143
});
143
144
144
145
log .info ("Installing 2nd instance" );
145
146
applyResources ("k8s/" + yamlFilePrefix + "operator-instance-2.yaml" );
146
147
await ().atMost (Duration .ofSeconds (POD_STARTUP_TIMEOUT )).untilAsserted (() -> {
147
148
var pod = client .pods ().inNamespace (namespace ).withName (OPERATOR_2_POD_NAME ).get ();
149
+ assertThat (pod .getStatus ().getContainerStatuses ()).isNotEmpty ();
148
150
assertThat (pod .getStatus ().getContainerStatuses ().get (0 ).getReady ()).isTrue ();
149
151
});
150
152
}
You can’t perform that action at this time.
0 commit comments