Last active
August 27, 2025 21:55
-
-
Save alexolinux/bf7d9d3fc78a77db0493bdf32326d380 to your computer and use it in GitHub Desktop.
Helm Installation for Linux distros.
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
| #!/bin/bash | |
| set -e | |
| echo "Starting Helm Installation..." | |
| curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | |
| chmod +x get_helm.sh | |
| ./get_helm.sh | |
| echo "Remove file after executed." | |
| rm get_helm.sh | |
| echo "Helm has been successfully installed! Starting Post-Installation Check..." | |
| helm repo add stable https://charts.helm.sh/stable | |
| helm repo list | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment