Skip to content

Commit f63040d

Browse files
committed
Revert one
1 parent 4e83274 commit f63040d

File tree

1 file changed

+27
-26
lines changed

1 file changed

+27
-26
lines changed

AKS-Arc/arc-gateway-aks-arc.md

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,35 @@
11
---
2-
title: Simplify network configuration requirements with AKS Arc Gateway (preview)
3-
description: Learn how to enable AKS Arc Gateway on AKS Arc clusters to simplify network configuration requirements.
2+
title: Simplify network configuration requirements with Azure Arc gateway (preview)
3+
description: Learn how to enable Arc gateway on AKS Arc clusters to simplify network configuration requirements
44
ms.topic: how-to
5-
ms.date: 07/15/2025
5+
ms.date: 11/18/2024
66
author: sethmanheim
7-
ms.author: sethm
8-
ms.reviewer: srikantsarwa
9-
ms.lastreviewed: 07/15/2025
7+
ms.author: sethm
8+
ms.reviewer: abha
9+
ms.lastreviewed: 11/18/2024
10+
1011
---
1112

12-
# Simplify network configuration requirements with the AKS Arc gateway (preview)
13+
# Simplify network configuration requirements with Azure Arc Gateway (preview)
1314

14-
If you use enterprise proxies to manage outbound traffic, the AKS Arc gateway can help simplify the process of enabling connectivity.
15+
If you use enterprise proxies to manage outbound traffic, Azure Arc gateway can help simplify the process of enabling connectivity.
1516

16-
The AKS Arc gateway (currently in preview) lets you:
17+
The Azure Arc gateway (currently in preview) lets you:
1718

1819
- Connect to Azure Arc by opening public network access to only seven fully qualified domain names (FQDNs).
1920
- View and audit all traffic that the Arc agents send to Azure via the Arc gateway.
2021

2122
> [!IMPORTANT]
22-
> The AKS Arc gateway is currently in preview.
23+
> Azure Arc gateway is currently in preview.
2324
>
2425
> See the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
2526
26-
## How the AKS Arc gateway works
27+
## How the Azure Arc gateway works
2728

28-
The AKS Arc gateway works by introducing two new components:
29+
The Arc gateway works by introducing two new components:
2930

3031
- The **Arc gateway resource** is an Azure resource that serves as a common front end for Azure traffic. The gateway resource is served on a specific domain/URL. You must create this resource by following the steps described in this article. After you successfully create the gateway resource, this domain/URL is included in the success response.
31-
- The **Arc Proxy** is a new component that runs as its own pod (called _Azure Arc Proxy_). This component acts as a forward proxy used by Azure Arc agents and extensions. There is no configuration required on your part for the Azure Arc Proxy.
32+
- The **Arc Proxy** is a new component that runs as its own pod (called *Azure Arc Proxy*). This component acts as a forward proxy used by Azure Arc agents and extensions. There is no configuration required on your part for the Azure Arc Proxy.
3233

3334
For more information, see [how the Azure Arc gateway works](/azure/azure-arc/kubernetes/arc-gateway-simplify-networking?tabs=azure-cli).
3435

@@ -53,34 +54,34 @@ For more information, see [how the Azure Arc gateway works](/azure/azure-arc/kub
5354

5455
Ensure your Arc gateway URL and all of the URLs below are allowed through your enterprise firewall:
5556

56-
| URL | Purpose |
57-
| ----------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
58-
| `[Your URL prefix].gw.arc.azure.com` | Your gateway URL. You can obtain this URL by running `az arcgateway list` after you create the resource. |
59-
| `management.azure.com` | Azure Resource Manager endpoint, required for the Azure Resource Manager control channel. |
60-
| `<region>.obo.arc.azure.com` | Required when `az connectedk8s proxy` is used. |
61-
| `login.microsoftonline.com`, `<region>.login.microsoft.com` | Microsoft Entra ID endpoint, used for acquiring identity access tokens. |
62-
| `gbl.his.arc.azure.com`, `<region>.his.arc.azure.com` | The cloud service endpoint for communicating with Arc Agents. Uses short names; for example `eus` for East US. |
63-
| `mcr.microsoft.com`, `*.data.mcr.microsoft.com` | Required to pull container images for Azure Arc agents. |
57+
|URL |Purpose |
58+
|---------|---------|
59+
|`[Your URL prefix].gw.arc.azure.com`| Your gateway URL. You can obtain this URL by running `az arcgateway list` after you create the resource. |
60+
|`management.azure.com` |Azure Resource Manager endpoint, required for the Azure Resource Manager control channel. |
61+
|`<region>.obo.arc.azure.com` |Required when `az connectedk8s proxy` is used. |
62+
|`login.microsoftonline.com`, `<region>.login.microsoft.com` | Microsoft Entra ID endpoint, used for acquiring identity access tokens. |
63+
|`gbl.his.arc.azure.com`, `<region>.his.arc.azure.com` |The cloud service endpoint for communicating with Arc Agents. Uses short names; for example `eus` for East US. |
64+
|`mcr.microsoft.com`, `*.data.mcr.microsoft.com` |Required to pull container images for Azure Arc agents. |
6465

65-
## Create an AKS Arc cluster with the AKS Arc gateway enabled
66+
## Create an AKS Arc cluster with Arc gateway enabled
6667

67-
Run the following command to create an AKS Arc cluster with the AKS Arc gateway enabled:
68+
Run the following command to create an AKS Arc cluster with the Arc gateway enabled:
6869

6970
```azurecli
7071
az aksarc create -n $clusterName -g $resourceGroup --custom-location $customlocationID --vnet-ids $arcVmLogNetId --aad-admin-group-object-ids $aadGroupID --gateway-id $gatewayId --generate-ssh-keys
7172
```
7273

73-
## Update an AKS Arc cluster and enable the AKS Arc gateway
74+
## Update an AKS Arc cluster and enable Arc gateway
7475

75-
Run the following command to update an AKS Arc cluster to enable the AKS Arc gateway:
76+
Run the following command to update an AKS Arc cluster to enable Arc gateway:
7677

7778
```azurecli
7879
az aksarc update -n $clusterName -g $resourceGroup --gateway-id $gatewayId
7980
```
8081

8182
## Disable Arc gateway on an AKS Arc cluster
8283

83-
Run the following command to disable AKS gateway:
84+
Run the following command to disable Arc gateway:
8485

8586
```azurecli
8687
az aksarc update -n $clusterName -g $resourceGroup --disable-gateway

0 commit comments

Comments
 (0)