Skip to content

Commit fdd2037

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into vnet-old-review
2 parents 04e50a1 + 82eaa3f commit fdd2037

File tree

6 files changed

+19
-22
lines changed

6 files changed

+19
-22
lines changed

articles/azure-arc/kubernetes/network-requirements.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ Depending on your scenario, you may need connectivity to other URLs, such as tho
2323
- [Azure portal URLs](../../azure-portal/azure-portal-safelist-urls.md)
2424
- [Azure CLI endpoints for proxy bypass](/cli/azure/azure-cli-endpoints)
2525

26-
For a complete list of network requirements for Azure Arc features and Azure Arc-enabled services, see [Azure Arc network requirements (Consolidated)](../network-requirements-consolidated.md).
26+
For a complete list of network requirements for Azure Arc features and Azure Arc-enabled services, see [Azure Arc network requirements](../network-requirements-consolidated.md).
2727

2828
## Next steps
2929

30-
- Learn about other [requirements for Arc-enabled Kubernetes](system-requirements.md).
30+
- Understand [system requirements for Arc-enabled Kubernetes](system-requirements.md).
3131
- Use our [quickstart](quickstart-connect-cluster.md) to connect your cluster.
3232
- Review [frequently asked questions](faq.md) about Arc-enabled Kubernetes.

articles/azure-arc/overview.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: overview
99

1010
Today, companies struggle to control and govern increasingly complex environments that extend across data centers, multiple clouds, and edge. Each environment and cloud possesses its own set of management tools, and new DevOps and ITOps operational models can be hard to implement across resources.
1111

12-
Azure Arc simplifies governance and management by delivering a consistent multi-cloud and on-premises management platform.
12+
Azure Arc simplifies governance and management by delivering a consistent multicloud and on-premises management platform.
1313

1414
Azure Arc provides a centralized, unified way to:
1515

@@ -88,3 +88,4 @@ For information, see the [Azure pricing page](https://azure.microsoft.com/pricin
8888
* Learn about [Azure Arc-enabled System Center Virtual Machine Manager](system-center-virtual-machine-manager/overview.md).
8989
* Experience Azure Arc by exploring the [Azure Arc Jumpstart](https://aka.ms/AzureArcJumpstart).
9090
* Learn about best practices and design patterns trough the various [Azure Arc Landing Zone Accelerators](https://aka.ms/ArcLZAcceleratorReady).
91+
* Understand [network requirements for Azure Arc](network-requirements-consolidated.md).

articles/azure-arc/resource-bridge/deploy-cli.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.topic: overview
1717

1818
This topic provides an overview of the [Azure CLI commands](/cli/azure/arcappliance) that are used to manage Arc resource bridge (preview) deployment, in the order in which they are typically used for deployment.
1919

20-
## az arcappliance createconfig
20+
## `az arcappliance createconfig`
2121

2222
This command creates the configuration files used by Arc resource bridge. Credentials that are provided during `createconfig`, such as vCenter credentials for VMware vSphere, are stored in a configuration file and locally within Arc resource bridge. These credentials should be a separate user account used only by Arc resource bridge, with permission to view, create, delete, and manage on-premises resources. If the credentials change, then the credentials on the resource bridge should be updated.
2323

@@ -30,27 +30,27 @@ This command also calls the `validate` command to check the configuration files.
3030
> [!NOTE]
3131
> Azure Stack HCI and Hybrid AKS use different commands to create the Arc resource bridge configuration files.
3232
33-
## az arcappliance validate
33+
## `az arcappliance validate`
3434

35-
The `validate` command checks the configuration files for a valid schema, cloud and core validations (such as management machine connectivity to required URLs), network settings, and proxy settings. It also performs tests on identity privileges and role assignments, network configuration, load balancer configuration and content delivery network connectivity.
35+
The `validate` command checks the configuration files for a valid schema, cloud and core validations (such as management machine connectivity to [required URLs](network-requirements.md)), network settings, and proxy settings. It also performs tests on identity privileges and role assignments, network configuration, load balancer configuration and content delivery network connectivity.
3636

37-
## az arcappliance prepare
37+
## `az arcappliance prepare`
3838

3939
This command downloads the OS images from Microsoft that are used to deploy the on-premises appliance VM. Once downloaded, the images are then uploaded to the local cloud image gallery to prepare for the creation of the appliance VM.
4040

4141
This command takes about 10-30+ minutes to complete, depending on the network speed. Allow the command to complete before continuing with the deployment.
4242

43-
## az arcappliance deploy
43+
## `az arcappliance deploy`
4444

4545
The `deploy` command deploys an on-premises instance of Arc resource bridge as an appliance VM, bootstrapped to be a Kubernetes management cluster. This command gets all necessary pods and agents within the Kubernetes cluster into a running state. Once the appliance VM is up, the kubeconfig file is generated.
4646

47-
## az arcappliance create
47+
## `az arcappliance create`
4848

4949
This command creates Arc resource bridge in Azure as an ARM resource, then establishes the connection between the ARM resource and on-premises appliance VM.
5050

5151
Once the `create` command initiates the connection, it will return in the terminal, even though the connection between the ARM resource and on-premises appliance VM is not yet complete. The resource bridge needs about 5 minutes to establish the connection between the ARM resource and the on-premises VM.
5252

53-
## az arcappliance show
53+
## `az arcappliance show`
5454

5555
The `show` command gets the status of the Arc resource bridge and ARM resource information. It can be used to check the progress of the connection between the ARM resource and on-premises appliance VM.
5656

@@ -62,7 +62,7 @@ While the Arc resource bridge is connecting the ARM resource to the on-premises
6262

6363
Successful Arc resource bridge creation results in `ProvisioningState = Succeeded` and `Status = Running`.
6464

65-
## az arcappliance delete
65+
## `az arcappliance delete`
6666

6767
This command deletes the appliance VM and Azure resources. It doesn't clean up the OS image, which remains in the on-premises cloud gallery.
6868

articles/azure-arc/resource-bridge/overview.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ Arc resource bridge supports the following Azure regions:
9191
* Australia East
9292
* Southeast Asia
9393

94-
9594
### Regional resiliency
9695

9796
While Azure has a number of redundancy features at every level of failure, if a service impacting event occurs, this preview release of Azure Arc resource bridge does not support cross-region failover or other resiliency capabilities. In the event of the service becoming unavailable, the on-premises VMs continue to operate unaffected. Management from Azure is unavailable during that service outage.
@@ -111,11 +110,7 @@ The following private cloud environments and their versions are officially suppo
111110

112111
### Networking
113112

114-
Arc resource bridge communicates outbound securely to Azure Arc over TCP port 443. If the appliance needs to connect through a firewall or proxy server to communicate over the internet, it communicates outbound using the HTTPS protocol.
115-
116-
You may need to allow specific URLs to [ensure outbound connectivity is not blocked](troubleshoot-resource-bridge.md#restricted-outbound-connectivity) by your firewall or proxy server.
117-
118-
For more information, see [Azure Arc resource bridge (preview) network requirements](network-requirements.md).
113+
Arc resource bridge communicates outbound securely to Azure Arc over TCP port 443. If the appliance needs to connect through a firewall or proxy server to communicate over the internet, it communicates outbound using the HTTPS protocol. You may need to allow specific URLs to [ensure outbound connectivity is not blocked](troubleshoot-resource-bridge.md#restricted-outbound-connectivity) by your firewall or proxy server. For more information, see [Azure Arc resource bridge (preview) network requirements](network-requirements.md).
119114

120115
## Next steps
121116

articles/azure-arc/resource-bridge/security-overview.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Azure Arc resource bridge (preview) security overview
33
description: Security information about Azure resource bridge (preview).
44
ms.topic: conceptual
5-
ms.date: 08/25/2022
5+
ms.date: 03/23/2023
66
---
77

88
# Azure Arc resource bridge (preview) security overview
@@ -33,5 +33,6 @@ The [activity log](../../azure-monitor/essentials/activity-log.md) is an Azure p
3333

3434
## Next steps
3535

36-
- Review the [Azure Arc resource bridge (preview) overview](overview.md) to understand more about requirements and technical details.
36+
- Understand [system requirements](system-requirements.md) and [network requirements](network-requirements.md) for Azure Arc resource bridge (preview).
37+
- Review the [Azure Arc resource bridge (preview) overview](overview.md) to understand more about features and benefits.
3738
- Learn more about [Azure Arc](../overview.md).

articles/azure-arc/resource-bridge/system-requirements.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Azure Arc resource bridge (preview) system requirements
33
description: Learn about system requirements for Azure Arc resource bridge (preview).
44
ms.topic: conceptual
5-
ms.date: 02/15/2023
5+
ms.date: 03/23/2023
66
---
77

88
# Azure Arc resource bridge (preview) system requirements
@@ -123,6 +123,6 @@ When deploying Arc resource bridge with AKS on Azure Stack HCI (AKS Hybrid), the
123123

124124
## Next steps
125125

126-
- Review the [Azure Arc resource bridge (preview) overview](overview.md) to understand more about requirements and technical details.
126+
- Understand [network requirements for Azure Arc resource bridge (preview)](network-requirements.md).
127+
- Review the [Azure Arc resource bridge (preview) overview](overview.md) to understand more about features and benefits.
127128
- Learn about [security configuration and considerations for Azure Arc resource bridge (preview)](security-overview.md).
128-

0 commit comments

Comments
 (0)