Skip to content

Commit 39fb1c1

Browse files
committed
address pr comments
1 parent a53eb90 commit 39fb1c1

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

articles/aks/istio-deploy-addon.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,20 @@ For more information on Istio and the service mesh add-on, see [Istio-based serv
1717

1818
## Before you begin
1919

20-
### Set environment variables:
20+
### Set environment variables
2121

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+
```
2727

2828
### 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
3132

33+
You can run `az --version` to verify above versions.
3234

3335
To install the aks-preview extension, run the following command:
3436

@@ -80,7 +82,7 @@ az aks create \
8082
The following example enables Istio add-on for an existing AKS cluster:
8183

8284
> [!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.
8486
> For more information, see [uninstall the OSM add-on from your AKS cluster][uninstall-osm-addon].
8587
> Istio add-on can only be enabled on AKS clusters of version >= 1.23.
8688
@@ -96,11 +98,7 @@ To verify the Istio add-on is installed on your cluster, run the following comma
9698
az aks show --resource-group ${RESOURCE_GROUP} --name ${CLUSTER} --query 'serviceMeshProfile.mode'
9799
```
98100

99-
Confirm the output shows Istio, for example:
100-
101-
```
102-
Istio
103-
```
101+
Confirm the output shows `Istio`.
104102

105103
Use `az aks get-credentials` to the credentials for your AKS cluster:
106104

0 commit comments

Comments
 (0)