You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: azure-local/deploy/deployment-without-azure-arc-gateway.md
+48-48Lines changed: 48 additions & 48 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,66 +36,66 @@ Make sure the following prerequisites are met before proceeding:
36
36
37
37
## Step 1: Review script parameters
38
38
39
-
1. Set the parameters. The script takes in the following parameters:
39
+
Review the parameters used in the script:
40
40
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. |
47
47
48
48
49
49
## Step 2: Set parameters
50
50
51
-
1.Set the parameters required for the registration script.
51
+
Set the parameters required for the registration script.
52
52
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:
54
54
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"
61
58
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.
#Define the resource group where you want to register your Azure Local machine with Arc.
60
+
$RG = "YourResourceGroupName"
83
61
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"
85
65
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"
88
68
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.
0 commit comments