Skip to content

Commit 372864e

Browse files
committed
Fix errors in egress-outboundtype.md
1 parent 692fe01 commit 372864e

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

articles/aks/egress-outboundtype.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,10 @@ For more information, see [configuring cluster egress via user-defined routing](
7272

7373
Changing the outbound type after cluster creation will deploy or remove resources as required to put the cluster into the new egress configuration.
7474

75+
Migration is only supported between `loadBalancer`, `managedNATGateway` (if using a managed virtual network), and `userDefinedNATGateway` (if using a custom virtual network).
76+
7577
> [!WARNING]
76-
> - Changing the outbound type on a cluster is disruptive to network connectivity and will result in a change of the cluster's egress IP address. If any firewall rules have been configured to restrict traffic from the cluster, they will need to be updated to match the new egress IP address.
77-
> - Changing to the `userDefinedRouting` egress type may require changing how incoming load balancer traffic flows, as egress traffic will now flow via the user-defined route instead of back via the load balancer, leading to asymmetric routing and dropped traffic. For more information, see the [user-defined routing documentation](egress-udr.md).
78+
> Changing the outbound type on a cluster is disruptive to network connectivity and will result in a change of the cluster's egress IP address. If any firewall rules have been configured to restrict traffic from the cluster, they will need to be updated to match the new egress IP address.
7879
7980
[!INCLUDE [preview features callout](includes/preview/preview-callout.md)]
8081

@@ -94,18 +95,18 @@ Run the following command to update to the latest version of the extension relea
9495
az extension update --name aks-preview
9596
```
9697

97-
### Register the 'AKS-OutBoundTypeMigrationPreviewReregistering' feature flag
98+
### Register the 'AKS-OutBoundTypeMigrationPreview' feature flag
9899

99-
Register the `AKS-OutBoundTypeMigrationPreviewReregistering` feature flag by using the [az feature register][az-feature-register] command, as shown in the following example:
100+
Register the `AKS-OutBoundTypeMigrationPreview` feature flag by using the [az feature register][az-feature-register] command, as shown in the following example:
100101

101102
```azurecli-interactive
102-
az feature register --namespace "Microsoft.ContainerService" --name "AKS-OutBoundTypeMigrationPreviewReregistering"
103+
az feature register --namespace "Microsoft.ContainerService" --name "AKS-OutBoundTypeMigrationPreview"
103104
```
104105

105106
It takes a few minutes for the status to show *Registered*. Verify the registration status by using the [az feature show][az-feature-show] command:
106107

107108
```azurecli-interactive
108-
az feature show --namespace "Microsoft.ContainerService" --name "AKS-OutBoundTypeMigrationPreviewReregistering"
109+
az feature show --namespace "Microsoft.ContainerService" --name "AKS-OutBoundTypeMigrationPreview"
109110
```
110111

111112
When the status reflects *Registered*, refresh the registration of the *Microsoft.ContainerService* resource provider by using the [az provider register][az-provider-register] command:
@@ -119,7 +120,7 @@ az provider register --namespace Microsoft.ContainerService
119120
Run the following command to change a cluster's outbound configuration:
120121

121122
```azurecli-interactive
122-
az aks update -g <resourceGroup> -n <clusterName> --outbound-type <loadBalancer|managedNATGateway|userAssignedNATGateway|userDefinedRouting>
123+
az aks update -g <resourceGroup> -n <clusterName> --outbound-type <loadBalancer|managedNATGateway|userAssignedNATGateway>
123124
```
124125

125126
## Next steps

0 commit comments

Comments
 (0)