Skip to content

v0.16.0

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Jul 04:53
· 46 commits to main since this release
9b12494

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

  • Login to azure
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