@fbl-plugins/k8s-kubectl
Version:
FBL plugin for K8s Kubectl CLI
29 lines • 928 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const handlers_1 = require("./src/handlers");
const packageJson = require('../package.json');
module.exports = {
name: packageJson.name,
description: packageJson.description,
tags: packageJson.keywords,
version: packageJson.version,
requires: {
fbl: packageJson.peerDependencies.fbl,
plugins: {
// pluginId: '<0.0.1'
},
applications: ['kubectl'],
},
reporters: [],
actionHandlers: [
new handlers_1.ApplyActionHandler(),
new handlers_1.CreateActionHandler(),
new handlers_1.ApplyDockerSecretActionHandler(),
new handlers_1.DeleteActionHandler(),
new handlers_1.GetAllActionHandler(),
new handlers_1.GetOneActionHandler(),
new handlers_1.WaitActionHandler(),
],
templateUtils: [],
};
//# sourceMappingURL=index.js.map