Skip to content

Commit

Permalink
fix: add missing export of kubectl.get.one handler
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-tkachenko committed Dec 4, 2019
1 parent ef945ba commit 36f9fda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
DeleteActionHandler,
GetAllActionHandler,
ApplyDockerSecretActionHandler,
GetOneActionHandler,
} from './src/handlers';

const packageJson = require('../package.json');
Expand All @@ -29,6 +30,7 @@ module.exports = <IPlugin>{
new ApplyDockerSecretActionHandler(),
new DeleteActionHandler(),
new GetAllActionHandler(),
new GetOneActionHandler(),
],

templateUtils: [],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fbl-plugins/k8s-kubectl",
"version": "1.1.6",
"version": "1.1.7",
"description": "FBL plugin for K8s Kubectl CLI",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit 36f9fda

Please sign in to comment.