Skip to content

Instantly share code, notes, and snippets.

@alexolinux
Last active August 27, 2025 21:55
Show Gist options
  • Select an option

  • Save alexolinux/bf7d9d3fc78a77db0493bdf32326d380 to your computer and use it in GitHub Desktop.

Select an option

Save alexolinux/bf7d9d3fc78a77db0493bdf32326d380 to your computer and use it in GitHub Desktop.
Helm Installation for Linux distros.
#!/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