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-legacy/plugin.yaml

23 lines
488 B

---
name: "hello-legacy"
version: "0.1.0"
usage: "echo hello message"
description: |-
description
platformCommand:
- os: linux
command: "sh"
args: ["-c", "${HELM_PLUGIN_DIR}/hello.sh"]
- os: windows
command: "pwsh"
args: ["-c", "${HELM_PLUGIN_DIR}/hello.ps1"]
ignoreFlags: true
platformHooks:
install:
- os: linux
command: "sh"
args: ["-c", 'echo "installing..."']
- os: windows
command: "pwsh"
args: ["-c", 'echo "installing..."']