We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d574c98 commit 034d108Copy full SHA for 034d108
installers/eksctl/installer.toml
@@ -0,0 +1,13 @@
1
+name = "eksctl"
2
+shortname = "eksctl"
3
+description = "A simple CLI tool for creating clusters on EKS"
4
+
5
6
+[curl]
7
+sh = """
8
+@info "Downloading eksctl"
9
+@sudo curl --silent --location "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp
10
+@info "Setting up at /usr/local/bin/eksctl"
11
+@sudo mv /tmp/eksctl /usr/local/bin
12
+@sudo rm /tmp/eksctl
13
+"""
0 commit comments