Skip to content

Commit 50b3c8e

Browse files
committed
resolving merge conflict
2 parents ce09a88 + 5e9ad6d commit 50b3c8e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

articles/aks/limit-egress-traffic.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,22 +74,27 @@ Provision a virtual network with two separate subnets: one for the cluster and o
7474
7575
```azurecli
7676
# Dedicated virtual network with AKS subnet
77+
<<<<<<< HEAD
7778
7879
<<<<<<< HEAD
80+
=======
81+
>>>>>>> 5e9ad6d2eb44aafc705156cb108dfcd910c93e9b
7982
az network vnet create \
8083
--resource-group $RG \
8184
--name $VNET_NAME \
8285
--location $LOC \
8386
--address-prefixes 10.42.0.0/16 \
8487
--subnet-name $AKSSUBNET_NAME \
8588
--subnet-prefix 10.42.1.0/24
89+
<<<<<<< HEAD
8690
=======
8791
```azurecli
8892
# Dedicated virtual network with AKS subnet
8993
>>>>>>> 3fd8d1fba64a42875809635a5dd59df79e769e09
94+
=======
95+
>>>>>>> 5e9ad6d2eb44aafc705156cb108dfcd910c93e9b
9096
9197
# Dedicated subnet for Azure Firewall (Firewall name can't be changed)
92-
9398
az network vnet subnet create \
9499
--resource-group $RG \
95100
--vnet-name $VNET_NAME \
@@ -325,13 +330,17 @@ If you used authorized IP ranges for your cluster in the previous step, you need
325330
CURRENT_IP=$(dig @resolver1.opendns.com ANY myip.opendns.com +short)
326331
```
327332

333+
<<<<<<< HEAD
328334
<<<<<<< HEAD
329335
2. Add the IP address to the approved ranges using the [`az aks update`][az-aks-update] command.
330336
=======
331337
```azurecli
332338
# Retrieve your IP address
333339
CURRENT_IP=$(dig @resolver1.opendns.com ANY myip.opendns.com +short)
334340
>>>>>>> 3fd8d1fba64a42875809635a5dd59df79e769e09
341+
=======
342+
2. Add the IP address to the approved ranges using the [`az aks update`][az-aks-update] command.
343+
>>>>>>> 5e9ad6d2eb44aafc705156cb108dfcd910c93e9b
335344
336345
```azurecli
337346
az aks update -g $RG -n $AKSNAME --api-server-authorized-ip-ranges $CURRENT_IP/32

0 commit comments

Comments
 (0)