We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61edbdb commit 0b77878Copy full SHA for 0b77878
2 files changed
OpenFlow/src/index.ts
@@ -127,7 +127,8 @@ process.on('unhandledRejection', up => {
127
logger.info("namespace: " + Config.namespace);
128
var fs = require('fs');
129
var contents = fs.readFileSync('/kubeconfig/kube.yaml', 'utf8');
130
- console.log(contents);
+ var json = JSON.stringify(contents, null, 3);
131
+ console.log(json);
132
logger.info("kubeconfig: " + Config.kubeconfig);
133
if (!await initDatabase()) {
134
process.exit(404);
VERSION
@@ -1 +1 @@
1
-0.0.176
+0.0.177
0 commit comments