You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/istio-deploy-addon.md
+12-14Lines changed: 12 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,18 +17,20 @@ For more information on Istio and the service mesh add-on, see [Istio-based serv
17
17
18
18
## Before you begin
19
19
20
-
### Set environment variables:
20
+
### Set environment variables
21
21
22
-
```bash
23
-
export CLUSTER=<cluster-name>
24
-
export RESOURCE_GROUP=<resource-group-name>
25
-
export LOCATION=<location>
26
-
```
22
+
```bash
23
+
export CLUSTER=<cluster-name>
24
+
export RESOURCE_GROUP=<resource-group-name>
25
+
export LOCATION=<location>
26
+
```
27
27
28
28
### Verify Azure CLI and aks-preview extension versions
29
-
* You need the Azure CLI version 2.44.0 or later installed. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI][install-azure-cli].
30
-
* You need the `aks-preview` Azure CLI extension of version 0.5.133 or later installed. Run `az --version` to find the version.
29
+
The add-on requires:
30
+
* Azure CLI version 2.44.0 or later installed. To install or upgrade, see [Install Azure CLI][install-azure-cli].
31
+
*`aks-preview` Azure CLI extension of version 0.5.133 or later installed
31
32
33
+
You can run `az --version` to verify above versions.
32
34
33
35
To install the aks-preview extension, run the following command:
34
36
@@ -80,7 +82,7 @@ az aks create \
80
82
The following example enables Istio add-on for an existing AKS cluster:
81
83
82
84
> [!IMPORTANT]
83
-
> You can't enable the Istio add-on on an existing cluster if an OSM add-on is already on your cluster. [Uninstall OSM add-on on your cluster][uninstall-osm-addon]before enabling the Istio add-on.
85
+
> You can't enable the Istio add-on on an existing cluster if an OSM add-on is already on your cluster. Uninstall the OSM add-on before installing the Istio add-on.
84
86
> For more information, see [uninstall the OSM add-on from your AKS cluster][uninstall-osm-addon].
85
87
> Istio add-on can only be enabled on AKS clusters of version >= 1.23.
86
88
@@ -96,11 +98,7 @@ To verify the Istio add-on is installed on your cluster, run the following comma
96
98
az aks show --resource-group ${RESOURCE_GROUP} --name ${CLUSTER} --query 'serviceMeshProfile.mode'
97
99
```
98
100
99
-
Confirm the output shows Istio, for example:
100
-
101
-
```
102
-
Istio
103
-
```
101
+
Confirm the output shows `Istio`.
104
102
105
103
Use `az aks get-credentials` to the credentials for your AKS cluster:
0 commit comments