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 1447f70 commit a5eda32Copy full SHA for a5eda32
integration-tests/src/test/java/oracle/kubernetes/operator/utils/Operator.java
@@ -314,6 +314,9 @@ private void generateInputYaml() throws Exception {
314
sb.append(generatedInputYamlFile);
315
logger.info("Invoking " + sb.toString());
316
ExecCommand.exec(sb.toString());
317
+
318
+ String content = new String(Files.readAllBytes(Paths.get(generatedInputYamlFile)));
319
+ logger.info("Content of weblogic-operator-values.yaml \n" + content);
320
}
321
322
private void runCommandInLoop(String command) throws Exception {
0 commit comments