Kubernetes 1.6 api reference docs

This commit is contained in:
Phillip Wittrock
2017-03-16 18:29:00 -07:00
parent 21773e77fa
commit 292a9ca3ce
769 changed files with 170879 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env node
var argv = require('optimist')
.string('x', 'y')
.argv
;
console.dir([ argv.x, argv.y ]);
/* Turns off numeric coercion:
./node string.js -x 000123 -y 9876
[ '000123', '9876' ]
*/