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