kubricate
Version:
A TypeScript framework for building reusable, type-safe Kubernetes infrastructure — without the YAML mess.
13 lines • 450 B
JavaScript
import { secretApplyCommand } from './apply.js';
import { secretValidateCommand } from './validate.js';
export const secretCommand = {
command: 'secret [command]',
describe: 'Manage secrets with SecretManager',
builder: yargs => yargs
// Add subcommands
.command(secretValidateCommand).command(secretApplyCommand)
// Show help if no subcommand is provided
.demandCommand(1, ''),
handler: () => {}
};
//# sourceMappingURL=secret.js.map