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/azure-ad-integration-cli.md
+47-1Lines changed: 47 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Learn how to use the Azure CLI to create and Azure Active Directory
4
4
author: TomGeske
5
5
ms.topic: article
6
6
ms.custom: devx-track-azurecli
7
-
ms.date: 06/05/2023
7
+
ms.date: 07/07/2023
8
8
ms.author: miwithro
9
9
---
10
10
@@ -243,6 +243,51 @@ error: You must be logged in to the server (Unauthorized)
243
243
* Secret defined in the application registration for server matches the value configured using `--aad-server-app-secret`
244
244
* Be sure that only one version of kubectl is installed on your machine at a time. Conflicting versions can cause issues during authorization. To install the latest version, use [az aks install-cli][az-aks-install-cli].
245
245
246
+
## Frequently asked questions about migration from Azure Active Directory Integration to AKS-managed Azure Active Directory
247
+
248
+
**1. What is the plan for migration?**
249
+
250
+
Azure Active Directory Integration (legacy) will be deprecated on 1st June 2023. After this date, you won't be able to create new clusters with Azure Active Directory (legacy). We'll migrate all Azure Active Directory Integration (legacy) AKS clusters to AKS-managed Azure Active Directory automatically starting from 1st August 2023.
251
+
We send notification emails to impacted subscription admins biweekly to remind them of migration.
252
+
253
+
**2. What will happen if I don't take any action?**
254
+
255
+
Your Azure Active Directory Integration (legacy) AKS clusters will continue working after 1st June 2023. We'll automatically migrate your clusters to AKS-managed Azure Active Directory starting from 1st August 2023. You may experience API server downtime during the migration.
256
+
257
+
The kubeconfig content changes after the migration. You need to merge the new credentials into the kubeconfig file using the `az aks get-credentials --resource-group <AKS resource group name> --name <AKS cluster name>`.
258
+
259
+
We recommend updating your AKS cluster to [AKS-managed Azure Active Directory][managed-aad-migrate] manually before 1st August. This way you can manage the downtime during non-business hours when it's more convenient.
260
+
261
+
**3. Why do I still receive the notification email after manual migration?**
262
+
263
+
It takes several days for the email to send. If your cluster wasn't migrated before we initiate the email-sending process, you may still receive a notification.
264
+
265
+
**4. How can I check whether my cluster my cluster is migrated to AKS-managed Azure Active Directory?**
266
+
267
+
Confirm your AKS cluster is migrated to the AKS-managed Azure Active Directory using the [`az aks show`][az-aks-show] command.
268
+
269
+
```azurecli
270
+
az aks show -g <RGName> -n <ClusterName> --query "aadProfile"
271
+
```
272
+
273
+
If your cluster is using the AKS-managed Azure Active Directory, the output shows `managed` is `true`. For example:
For the complete script that contains the commands shown in this article, see the [Azure AD integration script in the AKS samples repo][complete-script].
@@ -282,3 +327,4 @@ For best practices on identity and resource control, see [Best practices for aut
0 commit comments