Skip to content

Commit

Permalink
Merge pull request #24 from Heshdude/improve-installers
Browse files Browse the repository at this point in the history
Adding Helm installer
  • Loading branch information
Heshdude committed Aug 8, 2020
2 parents 40e7e6b + 8ab3f51 commit 6295e24
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions installers/helm/installer.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name = "Helm"
shortname = "helm"
description = "The package manager for Kubernetes"


[curl]
sh = """
@info "Downloading Helm"
@sudo curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
@sudo chmod +x get_helm.sh
@info "Installing"
@sudo ./get_helm.sh
@sudo rm ./get_helm.sh
"""

0 comments on commit 6295e24

Please sign in to comment.