Breaking change
- Append cluster name to
natgateway
resource to differentiate CR names for azure-service-operator
.
- Set
routeTable
for control plane nodes by default.
Commands to run after upgrade
az login
az account set -s <subscription-of-azurecluster>
- Remove natgateway manually so that CAPZ can recreate it with a unique name
export CLUSTER_NAME=<cluster-name>
az network vnet subnet update --resource-group $CLUSTER_NAME --vnet-name $CLUSTER_NAME-vnet --name node-subnet --remove natGateway.id
az network nat gateway delete --resource-group $CLUSTER_NAME --name node-natgateway
- Add route table to CP nodes
az network vnet subnet update --resource-group $CLUSTER_NAME --vnet-name $CLUSTER_NAME-vnet --name control-plane-subnet --route-table $CLUSTER_NAME-node-routetable