-
Notifications
You must be signed in to change notification settings - Fork 4k
[AKS] support AadProfile #20596
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[AKS] support AadProfile #20596
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,8 +41,9 @@ New-AzAksCluster [-NodeVmSetType <String>] [-NodeVnetSubnetID <String>] [-NodeMa | |
[-AssignIdentity <String>] [-AutoUpgradeChannel <String>] [-DiskEncryptionSetID <String>] | ||
[-DisableLocalAccount] [-HttpProxy <String>] [-HttpsProxy <String>] | ||
[-HttpProxyConfigNoProxyEndpoint <String[]>] [-HttpProxyConfigTrustedCa <String>] | ||
[-AksCustomHeader <Hashtable>] [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] | ||
[-SubscriptionId <String>] [<CommonParameters>] | ||
[-AksCustomHeader <Hashtable>] [-AadProfile <ManagedClusterAADProfile>] | ||
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [-SubscriptionId <String>] | ||
[<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
|
@@ -110,6 +111,21 @@ New-AzAksCluster -ResourceGroupName myResourceGroup -Name myAKSCluster -AutoScal | |
|
||
## PARAMETERS | ||
|
||
### -AadProfile | ||
The Azure Active Directory configuration. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a complex type. Can we add a new example (or add to an exisiting one) to demonstrate how it's used? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Examples are added for New-AzAksCluster and Set-AzAksCluster. |
||
|
||
```yaml | ||
Type: Microsoft.Azure.Management.ContainerService.Models.ManagedClusterAADProfile | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
|
||
### -AcrNameToAttach | ||
Grant the 'acrpull' role of the specified ACR to AKS Service Principal, e.g. myacr | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please move this line to
## Upcoming Release
otherwise if it's empty our build tool won't detect that Aks has a new release.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated.