Skip to content

Commit

Permalink
feat(maven-container): explicity support in K8s provider
Browse files Browse the repository at this point in the history
This adds the ability to deploy directly (without e.g. helm modules),
run tests and tasks etc.
  • Loading branch information
edvald committed Mar 18, 2019
1 parent fada240 commit 592bf94
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions garden-service/src/plugins/kubernetes/kubernetes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,10 @@ export function gardenPlugin(): GardenPlugin {
deleteSecret,
},
moduleActions: {
container: containerHandlers,
helm: helmHandlers,
"container": containerHandlers,
// TODO: we should find a way to avoid having to explicitly specify the key here
"maven-container": containerHandlers,
"helm": helmHandlers,
},
}
}

0 comments on commit 592bf94

Please sign in to comment.