mirror of
https://github.com/helm/helm.git
synced 2026-02-03 20:39:45 -05:00
Add plugin management subcommands for installing and removing plugins to `$HELM_HOST/plugins`. Install accepts a vcs url or a local directory. ``` $ helm plugin install http://github.com/adamreese/helm-env Installed plugin: env $ helm plugin list NAME VERSION DESCRIPTION env 0.1.0 Print out the helm environment. $ helm plugin remove env Removed plugin: env ``` closes #1977
11 lines
217 B
YAML
11 lines
217 B
YAML
name: "hello"
|
|
version: "0.1.0"
|
|
usage: "usage"
|
|
description: |-
|
|
description
|
|
command: "$HELM_PLUGIN_SELF/hello.sh"
|
|
useTunnel: true
|
|
ignoreFlags: true
|
|
install: "echo installing..."
|
|
hooks:
|
|
install: "echo installing..."
|