Skip to content
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

feat: define OIDC issuer profile #16834

Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1385,6 +1385,7 @@ offboard
offboards
officedocument
OLTP
OIDC
bcho marked this conversation as resolved.
Show resolved Hide resolved
onboarded
Onboarding
Onboards
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3740,6 +3740,10 @@
"title": "The pod identity profile of the Managed Cluster.",
"description": "See [use AAD pod identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on AAD pod identity integration."
},
"oidcIssuerProfile": {
"$ref": "#/definitions/ManagedClusterOIDCIssuerProfile",
"description": "The OIDC issuer profile of the Managed Cluster."
},
"nodeResourceGroup": {
"type": "string",
"description": "The name of the resource group containing agent pool nodes."
Expand Down Expand Up @@ -4406,6 +4410,20 @@
"title": "The pod identity profile of the Managed Cluster.",
"description": "See [use AAD pod identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on pod identity integration."
},
"ManagedClusterOIDCIssuerProfile": {
"properties": {
"issuerURL": {
"readOnly": true,
"type": "string",
"description": "The OIDC issuer url of this cluster."
bcho marked this conversation as resolved.
Show resolved Hide resolved
},
"enabled": {
"type": "boolean",
"description": "Whether the OIDC issuer is enabled."
}
},
"description": "The OIDC issuer profile of the Managed Cluster."
},
"ManagedClusterUpgradeProfile": {
"properties": {
"id": {
Expand Down