Last active
July 1, 2021 09:24
-
-
Save ss22219/d751060c0e90e0db3adcd53e3bb43cb6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -sS -o helm-v3.5.4-linux-amd64.tar.gz https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz | |
tar zxvf helm-v3.5.4-linux-amd64.tar.gz | |
$env:PATH = "$($env:PATH):$(pwd)/linux-amd64/" | |
$env:NAMESPACE = 'test' | |
$helmOut = helm help | |
echo "ErrorCode:$LASTEXITCODE" | |
echo "helm:$helmOut" | |
exit $LASTEXITCODE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment