-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved the helm plugin to this project to manage it easily
- Loading branch information
vyshakhp
committed
Jul 17, 2018
1 parent
291acc9
commit d058617
Showing
5 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ | |
*.out | ||
|
||
bin/ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
|
||
rm -rf temp | ||
mkdir temp | ||
cp plugin/* temp/ | ||
cd temp | ||
|
||
cp ../bin/helmez-bin.linux.amd64 ./helmez.bin && tar -czvf ../bin/helmez.linux.amd64.tgz plugin.yaml run.sh helmez.bin | ||
cp ../bin/helmez-bin.linux.386 ./helmez.bin && tar -czvf ../bin/helmez.linux.386.tgz plugin.yaml run.sh helmez.bin | ||
cp ../bin/helmez-bin.darwin.amd64 ./helmez.bin && tar -czvf ../bin/helmez.darwin.amd64.tgz plugin.yaml run.sh helmez.bin | ||
cp ../bin/helmez-bin.darwin.386 ./helmez.bin && tar -czvf ../bin/helmez.darwin.386.tgz plugin.yaml run.sh helmez.bin | ||
|
||
cd ../ | ||
rm -rf temp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: "helmez" | ||
version: "0.1.2" | ||
usage: "Integrate helmez tools with Helm" | ||
description: |- | ||
This plugin provides helmez services to Helm. | ||
ignoreFlags: false | ||
useTunnel: false | ||
command: "sh -c $HELM_PLUGIN_DIR/run.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
chmod +x $HELM_PLUGIN_DIR/helmez.bin | ||
$HELM_PLUGIN_DIR/helmez.bin |