-
Notifications
You must be signed in to change notification settings - Fork 279
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
Breaking changes of Network API version 2020-08-01 #403
Comments
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
For checking whether a region supports the availability zone or not, provider LIST API (https://docs.microsoft.com/en-us/rest/api/resources/providers/list) could be used. Here is an example: # query the zone mappings for virtualMachines
GET /subscriptions/<subscription-id>/providers?api-version=2020-06-01 | \
jq '.value[] | select (.id == "/subscriptions/<subscription-id>/providers/Microsoft.Compute")' | \
jq '.resourceTypes[] | select(.resourceType=="virtualMachines")' | \
jq '.zoneMappings' [
{
"location": "East US 2",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "Central US",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "West Europe",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "East US 2 EUAP",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "Central US EUAP",
"zones": [
"1",
"2"
]
},
{
"location": "France Central",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "Southeast Asia",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "West US 2",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "North Europe",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "East US",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "UK South",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "Japan East",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "Australia East",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "South Africa North",
"zones": []
},
{
"location": "South Central US",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "Canada Central",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "Germany West Central",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "Brazil South",
"zones": [
"2",
"1",
"3"
]
},
{
"location": "Central India",
"zones": []
},
{
"location": "Korea Central",
"zones": []
}
] |
/milestone v1.21 |
Let's confirm whether the API version is available in all regions before working on the task. |
Confirmed 2020-08-01 API is available in all regions. @nilo19 we could start this work now. |
Refer https://azure.microsoft.com/en-us/updates/zone-behavior-change/:
We need to check how to ensure the expected AZ (e.g. from aks-engine and AKS) are set on SLB/PIP when upgrading network API version to 2020-08-01.
The text was updated successfully, but these errors were encountered: