Skip to content

Commit e5159ef

Browse files
committed
Fixed blocking issues as per the PR review
1 parent d62317f commit e5159ef

File tree

2 files changed

+52
-52
lines changed

2 files changed

+52
-52
lines changed

.openpublishing.redirection.azure-local.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1937,22 +1937,22 @@
19371937
},
19381938
{
19391939
"source_path": "azure-local/deploy/deployment-azure-arc-gateway-configure-manually.md",
1940-
"redirect_url": "/azure-local/deploy/deployment-azure-arc-with-gateway",
1940+
"redirect_url": "/azure/azure-local/deploy/deployment-azure-arc-with-gateway",
19411941
"redirect_document_id": false
19421942
},
19431943
{
19441944
"source_path": "azure-local/deploy/deployment-azure-arc-gateway-configure-via-script.md",
1945-
"redirect_url": "/azure-local/deploy/deployment-azure-arc-with-gateway",
1945+
"redirect_url": "/azure/azure-local/deploy/deployment-azure-arc-with-gateway",
19461946
"redirect_document_id": false
19471947
},
19481948
{
19491949
"source_path": "azure-local/deploy/deployment-azure-arc-gateway-use-without-proxy.md",
1950-
"redirect_url": "/azure-local/deploy/deployment-azure-arc-with-gateway",
1950+
"redirect_url": "/azure/azure-local/deploy/deployment-azure-arc-with-gateway",
19511951
"redirect_document_id": false
19521952
},
19531953
{
19541954
"source_path": "azure-local/deploy/deployment-arc-register-local-ui.md",
1955-
"redirect_url": "/azure-local/deploy/deployment-azure-arc-without-gateway",
1955+
"redirect_url": "/azure/azure-local/deploy/deployment-azure-arc-without-gateway",
19561956
"redirect_document_id": false
19571957
}
19581958
]

azure-local/deploy/deployment-without-azure-arc-gateway.md

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -36,66 +36,66 @@ Make sure the following prerequisites are met before proceeding:
3636
3737
## Step 1: Review script parameters
3838

39-
1. Set the parameters. The script takes in the following parameters:
39+
Review the parameters used in the script:
4040

41-
|Parameters |Description |
42-
|------------|-------------|
43-
|`SubscriptionID` |The ID of the subscription used to register your machines with Azure Arc. |
44-
|`ResourceGroup` |The resource group precreated for Arc registration of the machines. A resource group is created if one doesn't exist. |
45-
|`Region` |The Azure region used for registration. See the [Supported regions](../concepts/system-requirements-23h2.md#azure-requirements) that can be used. |
46-
|`ProxyServer` |Optional parameter. Proxy Server address when required for outbound connectivity. |
41+
|Parameters |Description |
42+
|------------|-------------|
43+
|`SubscriptionID` |The ID of the subscription used to register your machines with Azure Arc. |
44+
|`ResourceGroup` |The resource group precreated for Arc registration of the machines. A resource group is created if one doesn't exist. |
45+
|`Region` |The Azure region used for registration. See the [Supported regions](../concepts/system-requirements-23h2.md#azure-requirements) that can be used. |
46+
|`ProxyServer` |Optional parameter. Proxy Server address when required for outbound connectivity. |
4747

4848

4949
## Step 2: Set parameters
5050

51-
1. Set the parameters required for the registration script.
51+
Set the parameters required for the registration script.
5252

53-
Here's an example of how you should change these parameters for the `Invoke-AzStackHciArcInitialization` initialization script. Once the registration is complete, the Azure Local machines are registered in Azure Arc using the Arc gateway:
53+
Here's an example of how you should change these parameters for the `Invoke-AzStackHciArcInitialization` initialization script. Once the registration is complete, the Azure Local machines are registered in Azure Arc using the Arc gateway:
5454

55-
```powershell
56-
#Define the subscription where you want to register your Azure Local machine with Arc.
57-
$Subscription = "YourSubscriptionID"
58-
59-
#Define the resource group where you want to register your Azure Local machine with Arc.
60-
$RG = "YourResourceGroupName"
55+
```powershell
56+
#Define the subscription where you want to register your Azure Local machine with Arc.
57+
$Subscription = "YourSubscriptionID"
6158
62-
#Define the region to use to register your server as Arc device
63-
#Do not use spaces or capital letters when defining region
64-
$Region = "eastus"
65-
66-
#Define the proxy address for your Azure Local deployment to access the internet via proxy.
67-
$ProxyServer = "http://proxyaddress:port"
68-
69-
#Define the bypass list for the proxy. Use comma to separate each item from the list.
70-
# Parameters must be separated with a comma `,`.
71-
# Use "localhost" instead of <local>
72-
# Use specific IPs such as 127.0.0.1 without mask
73-
# Use * for subnets allowlisting. 192.168.1.* for /24 exclusions. Use 192.168.*.* for /16 exclusions.
74-
# Append * for domain names exclusions like *.contoso.com
75-
# DO NOT INCLUDE .svc on the list. The registration script takes care of Environment Variables configuration.
76-
# At least the IP address of each Azure Local machine.
77-
# At least the IP address of the Azure Local cluster.
78-
# At least the IPs you defined for your infrastructure network. Arc resource bridge, Azure Kubernetes Service (AKS), and future infrastructure services using these IPs require outbound connectivity.
79-
# NetBIOS name of each machine.
80-
# NetBIOS name of the Azure Local cluster.
81-
82-
$ProxyBypassList = "localhost,127.0.0.1,*.contoso.com,machine1,machine2,machine3,machine4,machine5,192.168.*.*,AzureLocal-1"
59+
#Define the resource group where you want to register your Azure Local machine with Arc.
60+
$RG = "YourResourceGroupName"
8361
84-
```
62+
#Define the region to use to register your server as Arc device
63+
#Do not use spaces or capital letters when defining region
64+
$Region = "eastus"
8565
86-
<details>
87-
<summary>Expand this section to see an example output.</summary>
66+
#Define the proxy address for your Azure Local deployment to access the internet via proxy.
67+
$ProxyServer = "http://proxyaddress:port"
8868
89-
Here's a sample output of the parameters:
69+
#Define the bypass list for the proxy. Use comma to separate each item from the list.
70+
# Parameters must be separated with a comma `,`.
71+
# Use "localhost" instead of <local>
72+
# Use specific IPs such as 127.0.0.1 without mask
73+
# Use * for subnets allowlisting. 192.168.1.* for /24 exclusions. Use 192.168.*.* for /16 exclusions.
74+
# Append * for domain names exclusions like *.contoso.com
75+
# DO NOT INCLUDE .svc on the list. The registration script takes care of Environment Variables configuration.
76+
# At least the IP address of each Azure Local machine.
77+
# At least the IP address of the Azure Local cluster.
78+
# At least the IPs you defined for your infrastructure network. Arc resource bridge, Azure Kubernetes Service (AKS), and future infrastructure services using these IPs require outbound connectivity.
79+
# NetBIOS name of each machine.
80+
# NetBIOS name of the Azure Local cluster.
9081
91-
```output
92-
PS C:\Users\SetupUser> $Subscription = "Subscription ID"
93-
PS C:\Users\SetupUser> $RG = "myashcirg"
94-
PS C:\Users\SetupUser> $Region = "eastus"
95-
PS C:\Users\SetupUser> $ProxyServer = "http://192.168.10.10:8080"
96-
PS C:\Users\SetupUser> $ProxyBypassList = "localhost,127.0.0.1,*.contoso.com,machine1,machine2,machine3,machine4,machine5,192.168.*.*,AzureLocal-1"
97-
```
98-
</details>
82+
$ProxyBypassList = "localhost,127.0.0.1,*.contoso.com,machine1,machine2,machine3,machine4,machine5,192.168.*.*,AzureLocal-1"
83+
84+
```
85+
86+
<details>
87+
<summary>Expand this section to see an example output.</summary>
88+
89+
Here's a sample output of the parameters:
90+
91+
```output
92+
PS C:\Users\SetupUser> $Subscription = "Subscription ID"
93+
PS C:\Users\SetupUser> $RG = "myashcirg"
94+
PS C:\Users\SetupUser> $Region = "eastus"
95+
PS C:\Users\SetupUser> $ProxyServer = "http://192.168.10.10:8080"
96+
PS C:\Users\SetupUser> $ProxyBypassList = "localhost,127.0.0.1,*.contoso.com,machine1,machine2,machine3,machine4,machine5,192.168.*.*,AzureLocal-1"
97+
```
98+
</details>
9999

100100
## Step 3: Run registration script
101101

0 commit comments

Comments
 (0)