mirror of
https://github.com/helm/helm.git
synced 2026-02-19 02:39:04 -05:00
13 lines
170 B
Bash
Executable file
13 lines
170 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Hello from a Helm plugin"
|
|
|
|
echo "PARAMS"
|
|
echo $*
|
|
|
|
echo "ENVIRONMENT"
|
|
echo $TILLER_HOST
|
|
echo $HELM_PATH_CONFIG
|
|
|
|
$HELM_BIN --host $TILLER_HOST ls --all
|
|
|