File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
integration-tests/src/test/java/oracle/kubernetes/operator Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ public void cleanupOperatorAndDomain() throws Exception {
109
109
TestUtils .exec ("kubectl delete ns " + OP_NS + " --ignore-not-found" );
110
110
TestUtils .exec ("kubectl delete ns " + DOM_NS + " --ignore-not-found" );
111
111
TestUtils .exec ("kubectl get all --all-namespaces" );
112
+ TestUtils .exec ("rm -rf " + Paths .get (opUpgradeTmpDir ).toString ());
112
113
logger .log (Level .INFO , "+++++++++++++++Done AfterTest cleanup+++++++++++++++++++++" );
113
114
}
114
115
}
Original file line number Diff line number Diff line change @@ -326,6 +326,7 @@ public void callHelmInstall() throws Exception {
326
326
.append (" --set \" imagePullPolicy=" )
327
327
.append (imagePullPolicy )
328
328
.append ("\" --wait --timeout 60" );
329
+ TestUtils .exec ("cat " + generatedInputYamlFile );
329
330
logger .info ("Running " + cmd );
330
331
ExecResult result = ExecCommand .exec (cmd .toString ());
331
332
if (result .exitValue () != 0 ) {
You can’t perform that action at this time.
0 commit comments