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 ca24391 commit 5806db1Copy full SHA for 5806db1
integration-tests/src/test/java/oracle/kubernetes/operator/ItInitContainers.java
@@ -324,8 +324,9 @@ public void testInitContainerMultiple() throws Exception {
324
String modYaml = crd.getYamlTree();
325
logger.info(modYaml);
326
testInitContainer(modYaml);
327
- String cmd = "kubectl get pod " + pods[0] + " -n " + domain.getDomainNs();
+ String cmd;
328
for (String pod : pods) {
329
+ cmd = "kubectl get pod " + pod + " -n " + domain.getDomainNs();
330
TestUtils.checkCmdInLoop(cmd, "Init:0/2", pod);
331
TestUtils.checkCmdInLoop(cmd, "Init:1/2", pod);
332
TestUtils.checkPodReady(pod, domain.getDomainNs());
0 commit comments