You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/internal/plugin/testdata/plugdir/good/hello-v1/plugin.yaml

33 lines
679 B

---
name: "hello-v1"
version: "0.1.0"
type: cli/v1
apiVersion: v1
runtime: subprocess
config:
usage: hello [params]...
shortHelp: "echo hello message"
longHelp: |-
description
ignoreFlags: true
runtimeConfig:
platformCommand:
- os: linux
arch:
command: "sh"
args: ["-c", "${HELM_PLUGIN_DIR}/hello.sh"]
- os: windows
arch:
command: "pwsh"
args: ["-c", "${HELM_PLUGIN_DIR}/hello.ps1"]
platformHooks:
install:
- os: linux
arch: ""
command: "sh"
args: ["-c", 'echo "installing..."']
- os: windows
arch: ""
command: "pwsh"
args: ["-c", 'echo "installing..."']