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: articles/batch/batch-account-create-portal.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,11 @@ For background about Batch accounts and scenarios, see [Batch service workflow a
39
39
40
40
:::image type="content" source="media/batch-account-create-portal/storage_account.png" alt-text="Screenshot of the options when creating a storage account.":::
41
41
42
-
1. If desired, select **Advanced** to specify **Identity type**, **Public network access** or **Pool allocation mode**. For most scenarios, the default options are fine.
42
+
1. If desired, select **Advanced** to specify **Identity type**, **Pool allocation mode** or **Authentication mode**. For most scenarios, the default options are fine.
43
+
44
+
1. If desired, select **Networking** to configure [public network access](public-network-access.md) with your Batch account.
45
+
46
+
:::image type="content" source="media/batch-account-create-portal/batch-account-networking.png" alt-text="Screenshot of the networking options when creating a Batch account.":::
43
47
44
48
1. Select **Review + create**, then select **Create** to create the account.
45
49
@@ -50,7 +54,7 @@ Once the account has been created, select the account to access its settings and
50
54
> [!NOTE]
51
55
> The name of the Batch account is its ID and can't be changed. If you need to change the name of a Batch account, you'll need to delete the account and create a new one with the intended name.
52
56
53
-
:::image type="content" source="media/batch-account-create-portal/batch_blade.png" alt-text="Screenshot of the Batch account page in the Azure portal.":::
57
+
:::image type="content" source="media/batch-account-create-portal/batch-blade.png" alt-text="Screenshot of the Batch account page in the Azure portal.":::
54
58
55
59
When you develop an application with the [Batch APIs](batch-apis-tools.md#azure-accounts-for-batch-development), you need an account URL and key to access your Batch resources. (Batch also supports Azure Active Directory authentication.) To view the Batch account access information, select **Keys**.
56
60
@@ -127,7 +131,7 @@ Make sure to set the following parameters based on your Batch pool's configurati
Copy file name to clipboardExpand all lines: articles/batch/batch-pool-no-public-ip-address.md
+14-13Lines changed: 14 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,16 +6,17 @@ ms.date: 01/11/2022
6
6
ms.custom: references_regions
7
7
---
8
8
9
-
# Create an Azure Batch pool without public IP addresses (preview)
9
+
# Create a Batch pool without public IP addresses (preview)
10
10
11
11
> [!IMPORTANT]
12
-
> Support for pools without public IP addresses in Azure Batch is currently in public preview for the following regions: France Central, East Asia, West Central US, South Central US, West US 2, East US, North Europe, East US 2, Central US, West Europe, North Central US, West US, Australia East, Japan East, Japan West.
13
-
> This preview version is provided without a service level agreement, and it's not recommended for production workloads. Certain features might not be supported or might have constrained capabilities.
14
-
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
12
+
> - Support for pools without public IP addresses in Azure Batch is currently in public preview for the following regions: France Central, East Asia, West Central US, South Central US, West US 2, East US, North Europe, East US 2, Central US, West Europe, North Central US, West US, Australia East, Japan East, Japan West.
13
+
> - This preview version will be replaced by [Simplified node communication pool without public IP addresses](simplified-node-communication-pool-no-public-ip.md).
14
+
> - This preview version is provided without a service level agreement, and it's not recommended for production workloads. Certain features might not be supported or might have constrained capabilities.
15
+
> - For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
15
16
16
17
When you create an Azure Batch pool, you can provision the virtual machine configuration pool without a public IP address. This article explains how to set up a Batch pool without public IP addresses.
17
18
18
-
## Why use a pool without public IP Addresses?
19
+
## Why use a pool without public IP addresses?
19
20
20
21
By default, all the compute nodes in an Azure Batch virtual machine configuration pool are assigned a public IP address. This address is used by the Batch service to schedule tasks and for communication with compute nodes, including outbound access to the internet.
21
22
@@ -59,7 +60,7 @@ To restrict access to these nodes and reduce the discoverability of these nodes
59
60
60
61
## Use the Batch REST API to create a pool without public IP addresses
61
62
62
-
The example below shows how to use the [Azure Batch REST API](/rest/api/batchservice/pool/add) to create a pool that uses public IP addresses.
63
+
The example below shows how to use the [Batch Service REST API](/rest/api/batchservice/pool/add) to create a pool that uses public IP addresses.
Copy file name to clipboardExpand all lines: articles/batch/create-pool-public-ip.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,11 @@ ms.date: 12/20/2021
7
7
8
8
# Create an Azure Batch pool with specified public IP addresses
9
9
10
-
In Azure Batch, you can [create a Batch pool in a subnet of an Azure virtual network (VNet)](batch-virtual-network.md). Virtual machines (VMs) in the Batch pool are accessible through public IP addresses that Batch creates. These public IP addresses can change over the lifetime of the pool. If the IP addresses aren't refreshed, your network settings might become outdated.
10
+
In Azure Batch, you can [create a Batch pool in a subnet of an Azure virtual network (VNet)](batch-virtual-network.md). Virtual machines (VMs) in the Batch pool are accessible through public IP addresses that Batch creates. These public IP addresses can change over the lifetime of the pool. If the IP addresses aren't refreshed, your network settings might become outdated.
11
11
12
-
You can create a list of static public IP addresses to use with the VMs in your pool instead. In some cases, you might need to control the list of public IP addresses to make sure they don't change unexpectedly. For example, you might be working with an external service, such as a database, which restricts access to specific IP addresses.
12
+
You can create a list of static public IP addresses to use with the VMs in your pool instead. In some cases, you might need to control the list of public IP addresses to make sure they don't change unexpectedly. For example, you might be working with an external service, such as a database, which restricts access to specific IP addresses.
13
13
14
-
For information about creating pools without public IP addresses, read [Create an Azure Batch pool without public IP addresses](./batch-pool-no-public-ip-address.md).
14
+
For information about creating pools without public IP addresses, read [Create an Azure Batch pool without public IP addresses](./simplified-node-communication-pool-no-public-ip.md).
15
15
16
16
## Prerequisites
17
17
@@ -27,19 +27,19 @@ For information about creating pools without public IP addresses, read [Create a
27
27
Create one or more public IP addresses through one of these methods:
28
28
- Use the [Azure portal](../virtual-network/ip-services/virtual-network-public-ip-address.md#create-a-public-ip-address)
29
29
- Use the [Azure Command-Line Interface (Azure CLI)](/cli/azure/network/public-ip#az-network-public-ip-create)
30
-
- Use [Azure PowerShell](/powershell/module/az.network/new-azpublicipaddress).
30
+
- Use [Azure PowerShell](/powershell/module/az.network/new-azpublicipaddress).
31
31
32
32
Make sure your public IP addresses meet the following requirements:
33
33
34
34
- Create the public IP addresses in the same subscription and region as the account for the Batch pool.
35
35
- Set the **IP address assignment** to **Static**.
36
36
- Set the **SKU** to **Standard**.
37
37
- Specify a DNS name.
38
-
- Make sure no other resources use these public IP addresses, or the pool might experience allocation failures. Only use these public IP addresses for the VM configuration pools.
38
+
- Make sure no other resources use these public IP addresses, or the pool might experience allocation failures. Only use these public IP addresses for the VM configuration pools.
39
39
- Make sure that no security policies or resource locks restrict user access to the public IP address.
40
-
- Create enough public IP addresses for the pool to accommodate the number of target VMs.
41
-
- This number must equal at least the sum of the **targetDedicatedNodes** and **targetLowPriorityNodes** properties of the pool.
42
-
- If you don't create enough IP addresses, the pool partially allocates the compute nodes, and a resize error happens.
40
+
- Create enough public IP addresses for the pool to accommodate the number of target VMs.
41
+
- This number must equal at least the sum of the **targetDedicatedNodes** and **targetLowPriorityNodes** properties of the pool.
42
+
- If you don't create enough IP addresses, the pool partially allocates the compute nodes, and a resize error happens.
43
43
- Currently, Batch uses one public IP address for every 100 VMs.
44
44
- Also create a buffer of public IP addresses. A buffer helps Batch with internal optimization for scaling down. A buffer also allows quicker scaling up after an unsuccessful scale up or scale down. We recommend adding one of the following amounts of buffer IP addresses; choose whichever number is greater.
0 commit comments