Skip to content

Commit 048c46d

Browse files
committed
fix subnet UI
1 parent 6b72007 commit 048c46d

10 files changed

+41
-19
lines changed

articles/application-gateway/for-containers/alb-controller-release-notes.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,17 @@ Instructions for new or existing deployments of ALB Controller are found in the
3131

3232
## Release history
3333

34-
0.6.3 - Hotfix to address handling of AGC frontends during controller restart in managed scenario
34+
January 23, 2024 - 0.7.2
3535

36-
0.6.2 - Skipped
36+
January 11, 2024 - 0.6.6
3737

38-
November 6, 2023 - 0.6.1 - Gateway / Ingress API - Header rewrite support, Ingress API - URL rewrite support, Ingress multiple-TLS listener bug fix,
38+
December 14, 2023 - 0.6.4
39+
40+
December 5, 2023 - 0.6.3 - Hotfix to address handling of AGC frontends during controller restart in managed scenario
41+
42+
November 2, 2023 - 0.6.24971
43+
44+
November 3, 2023 - 0.6.1 - Gateway / Ingress API - Header rewrite support, Ingress API - URL rewrite support, Ingress multiple-TLS listener bug fix,
3945
two certificates maximum per host, adopting [semantic versioning (semver)](https://semver.org/), quality improvements
4046

4147
September 25, 2023 - 0.5.024542 - Custom Health Probes, Controller HA, Multi-site support for Ingress, [helm_release via Terraform fix](https://github.com/Azure/AKS/issues/3857), Path rewrite for Gateway API, status for Ingress resources, quality improvements
Loading
Loading
84.5 KB
Loading
Loading
Loading
Loading
131 KB
Loading
92.4 KB
Loading

articles/application-gateway/quick-create-portal.md

Lines changed: 32 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Sign in to the [Azure portal](https://portal.azure.com) with your Azure account.
2929

3030
## Create an application gateway
3131

32-
You'll create the application gateway using the tabs on the **Create application gateway** page.
32+
Create the application gateway using the tabs on the **Create application gateway** page.
3333

3434
1. On the Azure portal menu or from the **Home** page, select **Create a resource**.
3535
2. Under **Categories**, select **Networking** and then select **Application Gateway** in the **Popular Azure services** list.
@@ -40,8 +40,9 @@ You'll create the application gateway using the tabs on the **Create application
4040

4141
- **Resource group**: Select **myResourceGroupAG** for the resource group. If it doesn't exist, select **Create new** to create it.
4242
- **Application gateway name**: Enter *myAppGateway* for the name of the application gateway.
43+
- Use the default selections for other settings.
4344

44-
![Create new application gateway: Basics](./media/application-gateway-create-gateway-portal/application-gateway-create-basics.png)
45+
![Screenshot of create new application gateway: basics.](./media/application-gateway-create-gateway-portal/application-gateway-create-basics.png)
4546

4647
2. For Azure to communicate between the resources that you create, a virtual network is needed. You can either create a new virtual network or use an existing one. In this example, you'll create a new virtual network at the same time that you create the application gateway. Application Gateway instances are created in separate subnets. You create two subnets in this example: One for the application gateway, and another for the backend servers.
4748

@@ -53,16 +54,12 @@ You'll create the application gateway using the tabs on the **Create application
5354
- **Name**: Enter *myVNet* for the name of the virtual network.
5455

5556
- **Subnet name** (Application Gateway subnet): The **Subnets** grid will show a subnet named *default*. Change the name of this subnet to *myAGSubnet*.<br>The application gateway subnet can contain only application gateways. No other resources are allowed. The default IP address range provided is 10.0.0.0/24.
56-
57-
- **Subnet name** (backend server subnet): In the second row of the **Subnets** grid, enter *myBackendSubnet* in the **Subnet name** column.
5857

59-
- **Address range** (backend server subnet): In the second row of the **Subnets** Grid, enter an address range that doesn't overlap with the address range of *myAGSubnet*. For example, if the address range of *myAGSubnet* is 10.0.0.0/24, enter *10.0.1.0/24* for the address range of *myBackendSubnet*.
58+
![Screenshot of create new application gateway: virtual network.](./media/application-gateway-create-gateway-portal/application-gateway-create-vnet.png)
6059

6160
Select **OK** to close the **Create virtual network** window and save the virtual network settings.
62-
63-
![Create new application gateway: virtual network](./media/application-gateway-create-gateway-portal/application-gateway-create-vnet.png)
6461

65-
3. On the **Basics** tab, accept the default values for the other settings and then select **Next: Frontends**.
62+
3. Select **Next: Frontends**.
6663

6764
### Frontends tab
6865

@@ -72,7 +69,7 @@ You'll create the application gateway using the tabs on the **Create application
7269
7370
2. Select **Add new** for the **Public IP address** and enter *myAGPublicIPAddress* for the public IP address name, and then select **OK**.
7471

75-
![Create new application gateway: frontends](./media/application-gateway-create-gateway-portal/application-gateway-create-frontends.png)
72+
![Screenshot of create new application gateway: frontends.](./media/application-gateway-create-gateway-portal/application-gateway-create-frontends.png)
7673

7774
> [!NOTE]
7875
> Application Gateway frontend now supports dual-stack IP addresses (Public Preview). You can now create up to four frontend IP addresses: Two IPv4 addresses (public and private) and two IPv6 addresses (public and private).
@@ -93,7 +90,7 @@ The backend pool is used to route requests to the backend servers that serve the
9390

9491
3. In the **Add a backend pool** window, select **Add** to save the backend pool configuration and return to the **Backends** tab.
9592

96-
![Create new application gateway: backends](./media/application-gateway-create-gateway-portal/application-gateway-create-backends.png)
93+
![Screenshot of create new application gateway: backends.](./media/application-gateway-create-gateway-portal/application-gateway-create-backends.png)
9794

9895
4. On the **Backends** tab, select **Next: Configuration**.
9996

@@ -115,33 +112,52 @@ On the **Configuration** tab, you'll connect the frontend and backend pool you c
115112

116113
Accept the default values for the other settings on the **Listener** tab, then select the **Backend targets** tab to configure the rest of the routing rule.
117114

118-
![Create new application gateway: listener](./media/application-gateway-create-gateway-portal/application-gateway-create-rule-listener.png)
115+
![Screenshot of create new application gateway: listener.](./media/application-gateway-create-gateway-portal/application-gateway-create-rule-listener.png)
119116

120117
4. On the **Backend targets** tab, select **myBackendPool** for the **Backend target**.
121118

122119
5. For the **Backend setting**, select **Add new** to add a new Backend setting. The Backend setting will determine the behavior of the routing rule. In the **Add Backend setting** window that opens, enter *myBackendSetting* for the **Backend settings name** and *80* for the **Backend port**. Accept the default values for the other settings in the **Add Backend setting** window, then select **Add** to return to the **Add a routing rule** window.
123120

124-
![Create new application gateway: HTTP setting](./media/application-gateway-create-gateway-portal/application-gateway-create-backendsetting.png)
121+
![Screenshot of create new application gateway: backend setting](./media/application-gateway-create-gateway-portal/application-gateway-create-backendsetting.png)
125122

126123
6. On the **Add a routing rule** window, select **Add** to save the routing rule and return to the **Configuration** tab.
127124

128-
![Create new application gateway: routing rule](./media/application-gateway-create-gateway-portal/application-gateway-create-rule-backends.png)
125+
![Screenshot of new application gateway: completed configuration tab.](./media/application-gateway-create-gateway-portal/application-gateway-create-rule-backends.png)
129126

130127
7. Select **Next: Tags** and then **Next: Review + create**.
131128

132129
### Review + create tab
133130

134131
Review the settings on the **Review + create** tab, and then select **Create** to create the virtual network, the public IP address, and the application gateway. It can take several minutes for Azure to create the application gateway. Wait until the deployment finishes successfully before moving on to the next section.
135132

133+
![Screenshot of new application gateway: ready to create.](./media/application-gateway-create-gateway-portal/application-gateway-create.png)
134+
136135
## Add backend targets
137136

138137
In this example, you'll use virtual machines as the target backend. You can either use existing virtual machines or create new ones. You'll create two virtual machines as backend servers for the application gateway.
139138

140139
To do this, you'll:
141140

142-
1. Create two new VMs, *myVM* and *myVM2*, to be used as backend servers.
143-
2. Install IIS on the virtual machines to verify that the application gateway was created successfully.
144-
3. Add the backend servers to the backend pool.
141+
1. Add a backend subnet.
142+
2. Create two new VMs, *myVM* and *myVM2*, to be used as backend servers.
143+
3. Install IIS on the virtual machines to verify that the application gateway was created successfully.
144+
4. Add the backend servers to the backend pool.
145+
146+
### Add a backend subnet
147+
148+
The subnet *myAGSubnet* can only contain the application gateway, so we need another subnet to add backend targets.
149+
150+
To create a backend subnet:
151+
152+
1. Select the **myVNet** resource. You can select it under **Deployment details** after deployment of the application gateway is complete, or you can search for Virtual networks and select it from the list.
153+
2. Under **Settings**, select **Subnets** and then select **+ Subnet** to begin adding a new subnet.
154+
155+
- **Name**: Enter *myBackendSubnet*.
156+
- **Subnet address range**: Enter an address range that doesn't overlap with the address range of *myAGSubnet*. For example, if the address range of *myAGSubnet* is 10.0.0.0/24, enter *10.0.1.0/24* for the address range of *myBackendSubnet*. This address range might be already entered by default.
157+
158+
3. Use the default settings for other items and then select **Save**.
159+
160+
![Screenshot of new application gateway subnets.](./media/application-gateway-create-gateway-portal/application-gateway-subnets.png)
145161

146162
### Create a virtual machine
147163

0 commit comments

Comments
 (0)