File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed
integration-tests/src/test
java/oracle/kubernetes/operator/utils Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -389,10 +389,15 @@ private void callCreateDomainScript() throws Exception {
389
389
ExecResult result = ExecCommand .exec (cmd .toString ());
390
390
if (result .exitValue () != 0 ) {
391
391
throw new RuntimeException (
392
- "FAILURE: command " + cmd + " failed, returned " + result .stderr ());
392
+ "FAILURE: command "
393
+ + cmd
394
+ + " failed, returned "
395
+ + result .stdout ()
396
+ + "\n "
397
+ + result .stderr ());
393
398
}
394
399
String outputStr = result .stdout ().trim ();
395
- logger .info ("run " + outputStr );
400
+ logger .info ("Command returned " + outputStr );
396
401
if (!outputStr .contains (CREATE_DOMAIN_JOB_MESSAGE )) {
397
402
throw new RuntimeException ("FAILURE: Create domain Script failed.." );
398
403
}
Original file line number Diff line number Diff line change @@ -209,7 +209,12 @@ private void callCreateOperatorScript() throws Exception {
209
209
ExecResult result = ExecCommand .exec (cmd .toString ());
210
210
if (result .exitValue () != 0 ) {
211
211
throw new RuntimeException (
212
- "FAILURE: command " + cmd + " failed, returned " + result .stderr ());
212
+ "FAILURE: command "
213
+ + cmd
214
+ + " failed, returned "
215
+ + result .stdout ()
216
+ + "\n "
217
+ + result .stderr ());
213
218
}
214
219
String outputStr = result .stdout ().trim ();
215
220
logger .info ("Command returned " + outputStr );
Original file line number Diff line number Diff line change 45
45
docker pull wlsldi-v2.docker.oraclecorp.com/store-serverjre-8:latest
46
46
docker tag wlsldi-v2.docker.oraclecorp.com/store-serverjre-8:latest store/oracle/serverjre:8
47
47
48
+ docker pull wlsldi-v2.docker.oraclecorp.com/weblogic-webtier-apache-12.2.1.3.0:latest
49
+ docker tag wlsldi-v2.docker.oraclecorp.com/weblogic-webtier-apache-12.2.1.3.0:latest store/oracle/apache:12.2.1.3
50
+
48
51
# docker rmi -f $(docker images -q -f dangling=true)
49
52
docker images --quiet --filter=dangling=true | xargs --no-run-if-empty docker rmi -f
50
53
You can’t perform that action at this time.
0 commit comments