Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check notice on line 1 in specification/containerservice/resource-manager/Microsoft.ContainerService/aks/preview/2025-05-02-preview/managedClusters.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

Brownfield services will soon be required to convert from OpenAPI to TypeSpec. See https://aka.ms/azsdk/typespec.
"swagger": "2.0",
"info": {
"title": "ContainerServiceClient",
Expand Down Expand Up @@ -8230,6 +8230,13 @@
}
},
"LocalDNSOverrides": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/LocalDNSOverride"
},
"description": "LocalDNSOverrides is a map of zone names for Vnet and Kube DNS overrides."
},
"LocalDNSOverride": {
"type": "object",
"description": "Overrides for localDNS profile.",
"properties": {
Expand Down Expand Up @@ -8374,7 +8381,7 @@
]
},
"description": "Policy for serving stale data. See [cache plugin](https://coredns.io/plugins/cache) for more information.",
"default": "Verify"
"default": "Immediate"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1357,4 +1357,8 @@ directive:
from: managedClusters.json
where: $.definitions.MachineKubernetesProfile.properties.nodeLabels
reason: User defined custom key-value pairs, similar to the allowed "user defined tags." These pairs can have any value, as there is no validation on the values
- suppress: AvoidAdditionalProperties
from: managedClusters.json
where: $.definitions.LocalDNSOverrides
reason: User defined custom key-value pairs, similar to the allowed "user defined tags." These pairs can have any value, as there is no validation on the values
```
Loading