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/workload-identity-deploy-cluster.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Deploy and configure an Azure Kubernetes Service (AKS) cluster with workl
3
3
description: In this Azure Kubernetes Service (AKS) article, you deploy an Azure Kubernetes Service cluster and configure it with an Azure AD workload identity.
4
4
ms.topic: article
5
5
ms.custom: devx-track-azurecli, devx-track-linux
6
-
ms.date: 07/26/2023
6
+
ms.date: 09/27/2023
7
7
---
8
8
9
9
# Deploy and configure workload identity on an Azure Kubernetes Service (AKS) cluster
@@ -149,7 +149,7 @@ EOF
149
149
```
150
150
151
151
> [!IMPORTANT]
152
-
> Ensure your application pods using workload identity have added the following label [azure.workload.identity/use: "true"] to your running pods/deployments, otherwise the pods will fail once restarted.
152
+
> Ensure your application pods using workload identity have added the following label `azure.workload.identity/use: "true"` to your pod spec, otherwise the pods fail after their restarted.
In the following code samples, `DefaultAzureCredential` is used. This credential type will use the environment variables injected by the Azure Workload Identity mutating webhook to authenticate with Azure Key Vault.
43
+
In the following code samples, `DefaultAzureCredential` is used. This credential type uses the environment variables injected by the Azure Workload Identity mutating webhook to authenticate with Azure Key Vault.
44
44
45
45
## [.NET](#tab/dotnet)
46
46
@@ -224,7 +224,7 @@ The following diagram summarizes the authentication sequence using OpenID Connec
224
224
225
225
### Webhook Certificate Auto Rotation
226
226
227
-
Similar to other webhook addons, the certificate will be rotated by cluster certificate [auto rotation][auto-rotation] operation.
227
+
Similar to other webhook addons, the certificate is rotated by cluster certificate [auto rotation][auto-rotation] operation.
228
228
229
229
## Service account labels and annotations
230
230
@@ -252,11 +252,11 @@ All annotations are optional. If the annotation isn't specified, the default val
252
252
### Pod labels
253
253
254
254
> [!NOTE]
255
-
> For applications using Workload Identity it is now required to add the label 'azure.workload.identity/use: "true"' pod label in order for AKS to move Workload Identity to a "Fail Close" scenario before GA to provide a consistent and reliable behavior for pods that need to use workload identity.
255
+
> For applications using workload identity, it's required to add the label `azure.workload.identity/use: "true"` to the pod spec for AKS to move workload identity to a *Fail Close* scenario to provide a consistent and reliable behavior for pods that need to use workload identity. Otherwise the pods fail after their restarted.
256
256
257
257
|Label |Description |Recommended value |Required |
|`azure.workload.identity/use`| This label is required in the pod template spec. Only pods with this label will be mutated by the azure-workload-identity mutating admission webhook to inject the Azure specific environment variables and the projected service account token volume. |true |Yes |
259
+
|`azure.workload.identity/use`| This label is required in the pod template spec. Only pods with this label are mutated by the azure-workload-identity mutating admission webhook to inject the Azure specific environment variables and the projected service account token volume. |true |Yes |
0 commit comments