File tree Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -154,10 +154,23 @@ The clusterctl CLI tool handles the lifecycle of a Cluster API management cluste
154
154
{{#tab Linux}}
155
155
156
156
#### 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:
158
160
` ` ` bash
159
161
curl -L {{#releaselink gomodule:"sigs.k8s.io/cluster-api" asset:"clusterctl-linux-amd64" version:"1.3.x"}} -o clusterctl
160
162
` ` `
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
+
161
174
Install clusterctl:
162
175
` ` ` bash
163
176
sudo install -o root -g root -m 0755 clusterctl /usr/local/bin/clusterctl
@@ -171,12 +184,14 @@ clusterctl version
171
184
{{#tab macOS}}
172
185
173
186
#### 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:
175
190
` ` ` bash
176
191
curl -L {{#releaselink gomodule:"sigs.k8s.io/cluster-api" asset:"clusterctl-darwin-amd64" version:"1.3.x"}} -o clusterctl
177
192
` ` `
178
193
179
- Or if your Mac has an M1 CPU (" Apple Silicon" ):
194
+ Download for M1 CPU (" Apple Silicon" ) / ARM64 :
180
195
` ` ` bash
181
196
curl -L {{#releaselink gomodule:"sigs.k8s.io/cluster-api" asset:"clusterctl-darwin-arm64" version:"1.3.x"}} -o clusterctl
182
197
` ` `
You can’t perform that action at this time.
0 commit comments