mirror of https://github.com/helm/helm
Signed-off-by: Zethan <zetHannes@outlook.com>pull/10728/head
parent
65d8e72504
commit
ccd72ff57c
@ -0,0 +1,11 @@
|
||||
name: "downloader"
|
||||
version: "1.2.3"
|
||||
usage: "usage"
|
||||
description: |-
|
||||
download something
|
||||
command: "echo Hello"
|
||||
downloaders:
|
||||
- protocols:
|
||||
- "myprotocol"
|
||||
- "myprotocols"
|
||||
command: "echo Download"
|
@ -0,0 +1,8 @@
|
||||
name: "echo"
|
||||
version: "1.2.3"
|
||||
usage: "echo something"
|
||||
description: |-
|
||||
This is a testing fixture.
|
||||
command: "echo Hello"
|
||||
hooks:
|
||||
install: "echo Installing"
|
@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo "Hello from a Helm plugin"
|
||||
|
||||
echo "PARAMS"
|
||||
echo $*
|
||||
|
||||
$HELM_BIN ls --all
|
||||
|
@ -0,0 +1,9 @@
|
||||
name: "hello"
|
||||
version: "0.1.0"
|
||||
usage: "usage"
|
||||
description: |-
|
||||
description
|
||||
command: "$HELM_PLUGIN_DIR/hello.sh"
|
||||
ignoreFlags: true
|
||||
hooks:
|
||||
install: "echo installing..."
|
Loading…
Reference in new issue