Skip to content

Commit 15dfca1

Browse files
authored
Merge pull request #35 from Heshdude/improve-installers
Adding eksctl installer
2 parents e11f4e8 + 034d108 commit 15dfca1

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

installers/eksctl/installer.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)