Kubernetes release 1.6 resource reference docs

This commit is contained in:
Phillip Wittrock
2017-03-16 18:28:44 -07:00
parent 495e9f22b6
commit 21773e77fa
769 changed files with 119198 additions and 0 deletions
@@ -0,0 +1,19 @@
var optimist = require('./../index');
var argv = optimist.usage('This is my awesome program', {
'about': {
description: 'Provide some details about the author of this program',
required: true,
short: 'a',
},
'info': {
description: 'Provide some information about the node.js agains!!!!!!',
boolean: true,
short: 'i'
}
}).argv;
optimist.showHelp();
console.log('\n\nInspecting options');
console.dir(argv);