mirror of
https://github.com/helm/helm.git
synced 2026-02-03 20:39:45 -05:00
Co-authored-by: George Jenkins <gvjenkins@gmail.com> Signed-off-by: Scott Rigby <scott@r6by.com>
32 lines
679 B
YAML
32 lines
679 B
YAML
---
|
|
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..."']
|