Skip to content

Commit 554ba89

Browse files
authored
Merge pull request #7767 from oscr/book-add-all-archs-to-quickstart
📖 book: add download links for all clusterctl architectures to quick start
2 parents 333341b + 898020e commit 554ba89

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

docs/book/src/user/quick-start.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,23 @@ The clusterctl CLI tool handles the lifecycle of a Cluster API management cluste
154154
{{#tab Linux}}
155155
156156
#### Install clusterctl binary with curl on Linux
157-
Download the latest release; on Linux, type:
157+
If you are unsure you can determine your computers architecture by running `uname -a`
158+
159+
Download for AMD64:
158160
```bash
159161
curl -L {{#releaselink gomodule:"sigs.k8s.io/cluster-api" asset:"clusterctl-linux-amd64" version:"1.3.x"}} -o clusterctl
160162
```
163+
164+
Download for ARM64:
165+
```bash
166+
curl -L {{#releaselink gomodule:"sigs.k8s.io/cluster-api" asset:"clusterctl-linux-arm64" version:"1.3.x"}} -o clusterctl
167+
```
168+
169+
Download for PPC64LE:
170+
```bash
171+
curl -L {{#releaselink gomodule:"sigs.k8s.io/cluster-api" asset:"clusterctl-linux-ppc64le" version:"1.3.x"}} -o clusterctl
172+
```
173+
161174
Install clusterctl:
162175
```bash
163176
sudo install -o root -g root -m 0755 clusterctl /usr/local/bin/clusterctl
@@ -171,12 +184,14 @@ clusterctl version
171184
{{#tab macOS}}
172185
173186
#### Install clusterctl binary with curl on macOS
174-
Download the latest release; on macOS, type:
187+
If you are unsure you can determine your computers architecture by running `uname -a`
188+
189+
Download for AMD64:
175190
```bash
176191
curl -L {{#releaselink gomodule:"sigs.k8s.io/cluster-api" asset:"clusterctl-darwin-amd64" version:"1.3.x"}} -o clusterctl
177192
```
178193
179-
Or if your Mac has an M1 CPU ("Apple Silicon"):
194+
Download for M1 CPU ("Apple Silicon") / ARM64:
180195
```bash
181196
curl -L {{#releaselink gomodule:"sigs.k8s.io/cluster-api" asset:"clusterctl-darwin-arm64" version:"1.3.x"}} -o clusterctl
182197
```

0 commit comments

Comments
 (0)