kubricate
Version:
A TypeScript framework for building reusable, type-safe Kubernetes infrastructure — without the YAML mess.
19 lines (18 loc) • 596 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.secretCommand = void 0;
var _apply = /*#__PURE__*/require("./apply.js");
var _validate = /*#__PURE__*/require("./validate.js");
const secretCommand = exports.secretCommand = {
command: 'secret [command]',
describe: 'Manage secrets with SecretManager',
builder: yargs => yargs
// Add subcommands
.command(_validate.secretValidateCommand).command(_apply.secretApplyCommand)
// Show help if no subcommand is provided
.demandCommand(1, ''),
handler: () => {}
};
//# sourceMappingURL=secret.js.map