Skip to content

Commit 6844397

Browse files
authored
docs: update installation page to have arm64 mention (#1736)
#### What type of PR is this? <!-- Add one of the following kinds: /kind bug /kind cleanup /kind feature --> /kind documentation Updates the documentation to mention arm64. #### What this PR does / why we need it: N/A #### Which issue(s) this PR fixes: <!-- *Automatically closes linked issue when PR is merged. Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. --> N/A #### Special notes for your reviewer: N/A Signed-off-by: Charlie Drage <[email protected]>
1 parent a92241f commit 6844397

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

docs/installation.md

+8
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,23 @@ We have multiple ways to install Kompose. Our preferred (and most up-to-date) me
1818

1919
Kompose is released via GitHub, you can see all current releases on the [GitHub release page](https://github.com/kubernetes/kompose/releases).
2020

21+
This is the **recommended** way of installing Kompose.
22+
2123
**Linux and macOS:**
2224

2325
```sh
2426
# Linux
2527
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.2/kompose-linux-amd64 -o kompose
2628

29+
# Linux ARM64
30+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.2/kompose-linux-arm64 -o kompose
31+
2732
# macOS
2833
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.2/kompose-darwin-amd64 -o kompose
2934

35+
# macOS ARM64
36+
curl -L https://github.com/kubernetes/kompose/releases/download/v1.31.2/kompose-darwin-arm64 -o kompose
37+
3038
chmod +x kompose
3139
sudo mv ./kompose /usr/local/bin/kompose
3240
```

script/release.sh

+6
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,15 @@ __Linux and macOS:__
133133
# Linux
134134
curl -L https://github.com/kubernetes/kompose/releases/download/v$1/kompose-linux-amd64 -o kompose
135135
136+
# Linux ARM64
137+
curl -L https://github.com/kubernetes/kompose/releases/download/v$1/kompose-linux-arm64 -o kompose
138+
136139
# macOS
137140
curl -L https://github.com/kubernetes/kompose/releases/download/v$1/kompose-darwin-amd64 -o kompose
138141
142+
# macOS ARM64
143+
curl -L https://github.com/kubernetes/kompose/releases/download/v$1/kompose-darwin-arm64 -o kompose
144+
139145
chmod +x kompose
140146
sudo mv ./kompose /usr/local/bin/kompose
141147
\`\`\`

0 commit comments

Comments
 (0)