|
1 | 1 | // Module included in the following assemblies:
|
2 | 2 | //
|
3 |
| -// * service-mesh-docs-main/about/ossm-migrating-assembly.adoc |
| 3 | +// * service-mesh-docs-main/install/ossm-istioctl-tool.adoc |
4 | 4 |
|
5 | 5 | :_mod-docs-content-type: PROCEDURE
|
6 | 6 | [id="ossm-installing-the-istioctl-tool_{context}"]
|
7 | 7 | = Installing the Istioctl tool
|
8 | 8 |
|
| 9 | +Install the `istioctl` command-line utility to debug and diagnose {istio} service mesh deployments. |
| 10 | + |
9 | 11 | .Prerequisites
|
10 | 12 |
|
11 | 13 | * You have access to the {ocp-product-title} web console.
|
12 | 14 |
|
| 15 | +* The {SMProduct} 3 Operator is installed and running. |
| 16 | +
|
| 17 | +* You have created at least one `Istio` resource. |
| 18 | +
|
13 | 19 | .Procedure
|
14 | 20 |
|
15 |
| -. In the {ocp-product-title} web console, click the question mark icon and select *Command Line Tools*. |
| 21 | +. Confirm which version of the `Istio` resource runs on the installation by running the following command: |
| 22 | ++ |
| 23 | +[source,terminal] |
| 24 | +---- |
| 25 | +$ oc get istio -ojsonpath="{range .items[*]}{.spec.version}{'\n'}{end}" | sed s/^v// | sort |
| 26 | +---- |
| 27 | ++ |
| 28 | +If there are multiple `Istio` resources with different versions, choose the latest version. The latest version is displayed last. |
| 29 | +
|
| 30 | +. In the {ocp-product-title} web console, click the *Help* icon and select *Command Line Tools*. |
16 | 31 |
|
17 | 32 | . Click *Download istioctl*. Choose the version and architecture that matches your system.
|
| 33 | + |
| 34 | +* link:https://mirror.openshift.com/pub/cgw/servicemesh/latest/istioctl-1.24.4-linux-amd64.tar.gz[Linux (x86_64, amd64)] |
| 35 | +
|
| 36 | +* link:https://mirror.openshift.com/pub/cgw/servicemesh/latest/istioctl-1.24.4-linux-arm64.tar.gz[Linux on ARM (aarch64, arm64)] |
18 | 37 |
|
19 |
| -* link:https://mirror.openshift.com/pub/cgw/servicemesh/1.23.0/[Version 1.23.0] |
| 38 | +* link:https://mirror.openshift.com/pub/cgw/servicemesh/latest/istioctl-1.24.4-darwin-amd64.tar.gz[MacOS (x86_64, amd64)] |
20 | 39 |
|
21 |
| -* link:https://mirror.openshift.com/pub/cgw/servicemesh/1.24.1/[Version 1.24.1] |
| 40 | +* link:https://mirror.openshift.com/pub/cgw/servicemesh/latest/istioctl-1.24.4-darwin-arm64.tar.gz[MacOS on ARM (aarch64, arm64)] |
22 | 41 |
|
23 |
| -* link:https://mirror.openshift.com/pub/cgw/servicemesh/latest/[Latest] |
| 42 | +* link:https://mirror.openshift.com/pub/cgw/servicemesh/latest/istioctl-1.24.4-windows-amd64.zip[Windows (x86_64, amd64)] |
24 | 43 |
|
25 |
| -. Extract the `istioctl` binary by running the following command: |
| 44 | +. Extract the `istioctl` binary file. |
| 45 | + |
| 46 | +.. If you are using a Linux operating system, run the following command: |
26 | 47 | +
|
27 | 48 | [source,terminal]
|
28 | 49 | ----
|
29 | 50 | $ tar xzf istioctl-<VERSION>-<OS>-<ARCH>.tar.gz
|
30 | 51 | ----
|
31 | 52 |
|
| 53 | +.. If you are using an Apple Mac operating system, unpack and extract the archive. |
| 54 | + |
| 55 | +.. If you are using a Microsoft Windows operating system, use the zip software to extract the archive. |
| 56 | + |
32 | 57 | . Move to the uncompressed directory by running the following command:
|
33 | 58 | +
|
34 | 59 | [source,terminal]
|
|
0 commit comments