Skip to content

Commit 9e7f4fa

Browse files
Merge pull request #215578 from CocoWang-wql/patch-23
Update workload-identity-deploy-cluster.md
2 parents 8733349 + 3bd39b0 commit 9e7f4fa

File tree

1 file changed

+1
-21
lines changed

1 file changed

+1
-21
lines changed

articles/aks/workload-identity-deploy-cluster.md

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploy and configure an Azure Kubernetes Service (AKS) cluster with workl
33
description: In this Azure Kubernetes Service (AKS) article, you deploy an Azure Kubernetes Service cluster and configure it with an Azure AD workload identity (preview).
44
services: container-service
55
ms.topic: article
6-
ms.date: 10/03/2022
6+
ms.date: 10/24/2022
77
---
88

99
# Deploy and configure workload identity (preview) on an Azure Kubernetes Service (AKS) cluster
@@ -62,26 +62,6 @@ When ready, refresh the registration of the *Microsoft.ContainerService* resourc
6262
az provider register --namespace Microsoft.ContainerService
6363
```
6464

65-
## Register the 'EnableOIDCIssuerPreview' feature flag
66-
67-
Register the `EnableOIDCIssuerPreview` feature flag by using the [az feature register][az-feature-register] command, as shown in the following example:
68-
69-
```azurecli-interactive
70-
az feature register --namespace "Microsoft.ContainerService" --name "EnableOIDCIssuerPreview"
71-
```
72-
73-
It takes a few minutes for the status to show *Registered*. Verify the registration status by using the [az feature list][az-feature-list] command:
74-
75-
```azurecli-interactive
76-
az feature list -o table --query "[?contains(name, 'Microsoft.ContainerService/EnableOIDCIssuerPreview')].{Name:name,State:properties.state}"
77-
```
78-
79-
When ready, refresh the registration of the *Microsoft.ContainerService* resource provider by using the [az provider register][az-provider-register] command:
80-
81-
```azurecli-interactive
82-
az provider register --namespace Microsoft.ContainerService
83-
```
84-
8565
## Create AKS cluster
8666

8767
Create an AKS cluster using the [az aks create][az-aks-create] command with the `--enable-oidc-issuer` parameter to use the OIDC Issuer. The following example creates a cluster named *myAKSCluster* with one node in the *myResourceGroup*:

0 commit comments

Comments
 (0)