Skip to content

Commit

Permalink
Merge branch 'master' into feature/powershell
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbeaumont committed Oct 13, 2020
2 parents 3abdd40 + 74284cf commit 977118c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ build/docker/
eksctl_*_*.snap

userdocs/src/usage/schema.json

# Goreleaser
dist/
7 changes: 6 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,17 @@ builds:
- linux
goarch:
- amd64
- arm64
- arm
goarm:
- 6
- 7

archives:
- id: default
builds:
- default
name_template: "eksctl_{{ .Os }}_{{ .Arch }}"
name_template: "eksctl_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
replacements:
darwin: Darwin
linux: Linux
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ curl --silent --location "https://github.com/weaveworks/eksctl/releases/latest/d
sudo mv /tmp/eksctl /usr/local/bin
```

For ARM system, please change ARCH (e.g. armv6, armv7 or arm64) accordingly

```
curl --silent --location "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_arm64.tar.gz" | tar xz -C /tmp
sudo mv /tmp/eksctl /usr/local/bin
```

Alternatively, macOS users can use [Homebrew](https://brew.sh):

```
Expand Down

0 comments on commit 977118c

Please sign in to comment.