mirror of https://github.com/helm/helm
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.
33 lines
679 B
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..."']
|