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
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ export LOCATION=<location>
30
30
The add-on requires Azure CLI version 2.57.0 or later installed. You can run `az --version` to verify version. To install or upgrade, see [Install Azure CLI][azure-cli-install].
31
31
32
32
## Query available Istio add-on revisions
33
-
You can use the command below to find information about which Istio add-on revisions are available in a region and their compatibility with AKS cluster versions:
33
+
To find information about which Istio add-on revisions are available in a region and their compatibility with AKS cluster versions, use:
34
34
35
35
```azurecli-interactive
36
36
az aks mesh get-revisions --location <location> -o table
@@ -39,11 +39,11 @@ az aks mesh get-revisions --location <location> -o table
39
39
40
40
## Install Istio add-on
41
41
### Revision selection
42
-
If you enable the add-on without specifiying a revision, a default supported revision will be installed for you
42
+
If you enable the add-on without specifying a revision, a default supported revision is installed for you.
43
43
44
44
If you wish to select a revision instead:
45
-
1. Use the `get-revisions` command in the [previous step](#query-available-istio-add-on-revisions) to check which revisions are available for different AKS cluster versions in a region.
46
-
1. Based on the available revisions, you can include a `--revision asm-X-Y` flag in in the enable command you use for mesh installation
45
+
1. Use the `get-revisions` command in the [previous step](#query-available-istio-add-on-revisions) to check which revisions are available for different AKS cluster versions in a region
46
+
1. Based on the available revisions, you can include a `--revision asm-X-Y` flag in the enable command you use for mesh installation.
To automatically install sidecar to any new pods, annotate your namespaces with the revision label corresponding to the control plane revision currently installed. If you are unsure which revision is installed, use:
105
+
To automatically install sidecar to any new pods, annotate your namespaces with the revision label corresponding to the control plane revision currently installed. If you're unsure which revision is installed, use:
106
106
```bash
107
107
az aks show --resource-group ${RESOURCE_GROUP} --name ${CLUSTER} --query 'serviceMeshProfile.istio.revisions'
You can either deploy the sample application provided for testing, or trigger sidecar injection for existing workloads.
126
126
127
127
### Existing applications
128
-
If you have existing applications to be added to the mesh, ensure their namespaces are labelled as in the previous step, and then restart their deployments to trigger sidecar injection:
128
+
If you have existing applications to be added to the mesh, ensure their namespaces are labeled as in the previous step, and then restart their deployments to trigger sidecar injection:
Verify that sidecar injection succeeded by looking for the `istio-proxy` container in the describe output, ex:
133
+
Verify that sidecar injection succeeded by ensuring all containers are ready and looking for the `istio-proxy` container in the `kubectl describe` output, for example:
0 commit comments