Last active
June 6, 2021 12:36
-
-
Save romanlab/6a01ca90765177c89d5387b8ca8f73f8 to your computer and use it in GitHub Desktop.
Helm plugin hooks section
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
command: "echo The plugin is located in: \"$HELM_PLUGIN_DIR\" and its name is: \"$HELM_PLUGIN_NAME\"" |
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
hooks: | |
install: "cd $HELM_PLUGIN_DIR; ./scripts/install.sh" | |
update: "cd $HELM_PLUGIN_DIR; ./scripts/update.sh" | |
delete: "cd $HELM_PLUGIN_DIR; ./scripts/delete.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
platformCommand: | |
- os: linux | |
arch: i386 | |
command: "echo The plugin is located in: \"$HELM_PLUGIN_DIR\" and its name is: \"$HELM_PLUGIN_NAME\". The OS is linux and the arch is i386" | |
- os: linux | |
arch: amd64 | |
command: "echo The plugin is located in: \"$HELM_PLUGIN_DIR\" and its name is: \"$HELM_PLUGIN_NAME\". The OS is linux and the arch is amd64" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment