Skip to content

Commit d7f3b92

Browse files
Merge pull request #2658 from MicrosoftDocs/main
Auto Publish – main to live - 2025-11-21 23:00 UTC
2 parents f837eec + 9561430 commit d7f3b92

File tree

6 files changed

+410
-31
lines changed

6 files changed

+410
-31
lines changed

articles/container-instances/container-instances-standby-pool-create.md

Lines changed: 43 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -206,24 +206,28 @@ Create a standby pool and associate it with a container group profile using [az
206206

207207
```azurecli-interactive
208208
az standby-container-group-pool create \
209-
--resource-group myResourceGroup \
210-
--location WestCentralUS \
211-
--name myStandbyPool \
212-
--max-ready-capacity 20 \
213-
--refill-policy always \
214-
--container-profile-id "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroupProfiles/mycontainergroupprofile"
209+
--resource-group myResourceGroup \
210+
--location westcentralus \
211+
--name myStandbyPool \
212+
--max-ready-capacity 20 \
213+
--refill-policy always \
214+
--container-group-profile-id "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroupProfiles/mycontainergroupprofile" \
215+
--container-group-profile-revision 1
216+
215217
```
216218
### [PowerShell](#tab/powershell)
217219
Create a standby pool and associate it with a container group profile using [New-AzStandbyContainerGroupPool](/powershell/module/az.standbypool/new-AzStandbyContainerGroupPool).
218220

219221
```azurepowershell-interactive
220222
New-AzStandbyContainerGroupPool `
221-
-ResourceGroup myResourceGroup `
222-
-Location "WestCentralUS" `
223+
-ResourceGroupName myResourceGroup `
224+
-Location "westcentralus" `
223225
-Name myStandbyPool `
224226
-MaxReadyCapacity 20 `
225-
-RefillPolicy always `
226-
-ContainerProfileId "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroupProfiles/mycontainergroupprofile"
227+
-RefillPolicy "always" `
228+
-ContainerGroupProfileId "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroupProfiles/mycontainergroupprofile" `
229+
-ContainerGroupProfileRevision 1
230+
227231
```
228232

229233
### [ARM template](#tab/template)
@@ -236,42 +240,51 @@ Create a standby pool and associate it with a container group profile. Create a
236240
"contentVersion": "1.0.0.0",
237241
"parameters": {
238242
"location": {
239-
"type": "string",
240-
"defaultValue": "West Central US"
243+
"type": "string",
244+
"defaultValue": "West Central US"
241245
},
242246
"name": {
243-
"type": "string",
244-
"defaultValue": "myStandbyPool"
247+
"type": "string",
248+
"defaultValue": "myStandbyPool"
249+
},
250+
"maxReadyCapacity": {
251+
"type": "int",
252+
"defaultValue": 10
245253
},
246-
"maxReadyCapacity" : {
247-
"type": "int",
248-
"defaultValue": 10
254+
"refillPolicy": {
255+
"type": "string",
256+
"defaultValue": "always"
249257
},
250-
"refillPolicy" : {
251-
"type": "string",
252-
"defaultValue": "always"
258+
"containerGroupProfileId": {
259+
"type": "string",
260+
"defaultValue": "/subscriptions/{SubscriptionID}/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroupProfiles/mycontainergroupprofile"
253261
},
254-
"containerGroupProfile" : {
255-
"type": "string",
256-
"defaultValue": "/subscriptions/{SubscriptionID}/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroupProfiles/mycontainergroupprofile"
262+
"containerGroupProfileRevision": {
263+
"type": "int",
264+
"defaultValue": 1
257265
}
258266
},
259-
"resources": [
267+
"resources": [
260268
{
261269
"type": "Microsoft.StandbyPool/standbyContainerGroupPools",
262270
"apiVersion": "2025-03-01",
263271
"name": "[parameters('name')]",
264272
"location": "[parameters('location')]",
265273
"properties": {
266-
"elasticityProfile": {
267-
"maxReadyCapacity": "[parameters('maxReadyCapacity')]",
268-
"refillPolicy": "[parameters('refillPolicy')]"
269-
},
270-
"containerGroupProfile": "[parameters('containerGroupProfile')]"
274+
"elasticityProfile": {
275+
"maxReadyCapacity": "[parameters('maxReadyCapacity')]",
276+
"refillPolicy": "[parameters('refillPolicy')]"
277+
},
278+
"containerGroupProperties": {
279+
"containerGroupProfile": {
280+
"id": "[parameters('containerGroupProfileId')]",
281+
"revision": "[parameters('containerGroupProfileRevision')]"
282+
}
283+
}
271284
}
272285
}
273286
]
274-
}
287+
}
275288

276289
```
277290

articles/virtual-machines/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -538,6 +538,8 @@
538538
href: ./sizes/gpu-accelerated/ncast4v3-series.md
539539
- name: NC_A100_v4 series
540540
href: ./sizes/gpu-accelerated/nca100v4-series.md
541+
- name: NC_RTXPRO6000BSE_v6 series
542+
href: ./sizes/gpu-accelerated/nc-rtxpro6000-bse-v6-series.md
541543
- name: ND family
542544
items:
543545
- name: Overview

articles/virtual-machines/linux/run-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ You can use one of the [built-in roles](/azure/role-based-access-control/built-i
114114

115115
## Action Run Command Linux troubleshooting
116116

117-
When troubleshooting action run command for Linux environments, refer to the *handler* log file typically located in the following directory: `/var/log/azure/run-command-handler/handler.log` for further details.
117+
When troubleshooting action run command for Linux environments, refer to the *handler* log file typically located in the following directory: `/var/log/azure/run-command/handler.log` for further details.
118118

119119
### Known issues
120120
The Linux action run command logs have a few notable differences compared to the action run command Windows logs:
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: NC_RTXPRO6000BSE_v6 series specs include
3+
description: Include file containing specifications of NC_RTXPRO6000BSE_v6-series VM sizes.
4+
author: mattmcinnes
5+
ms.topic: include
6+
ms.service: azure-virtual-machines
7+
ms.subservice: sizes
8+
ms.date: 11/21/2025
9+
ms.author: mattmcinnes
10+
ms.reviewer: mattmcinnes
11+
ms.custom: include file
12+
---
13+
| Part | Quantity <br><sup>Count Units | Specs <br><sup>SKU ID, Performance Units, etc. |
14+
|---|---|---|
15+
| Processor | 32 - 320 vCPUs | Intel Xeon Granite Rapids-AP [x86-64] |
16+
| Memory | 128 - 1280 GiB | High-speed DDR5 |
17+
| Local Storage | 1 Disk | 256 - 2048 GiB |
18+
| Remote Storage | 16 Disks | |
19+
| Network | 6 - 8 NICs | 25000 - 200000 Mbps |
20+
| Accelerators | 0.25 - 2 | Nvidia RTX PRO 6000 Blackwell Server Edition GPU (96GB)|
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: NC_RTXPRO6000BSE_v6-series summary include file
3+
description: Include file for NC_RTXPRO6000BSE_v6-series summary
4+
author: mattmcinnes
5+
ms.topic: include
6+
ms.service: azure-virtual-machines
7+
ms.subservice: sizes
8+
ms.date: 11/21/2025
9+
ms.author: mattmcinnes
10+
ms.reviewer: mattmcinnes
11+
ms.custom: include file
12+
---
13+
These NC RTX PRO 6000 BSE v6 VMs are powered by NVIDIA RTX PRO 6000 Blackwell Server Edition GPUs, each featuring 96 GB of ultra-fast GDDR7 memory and the latest Blackwell architecture to enable breakthrough performance in multimodal AI, physical AI, and high-fidelity graphics. The VM host is equipped with Intel Granite Rapids CPUs, providing all-core turbo frequency of up to 4.2 GHz to handle demanding pre- and post-processing steps efficiently. These VMs are ideal for converged AI and visual computing workloads, such as:
14+
15+
- Real-time digital twin and NVIDIA Omniverse simulation.
16+
- LLM Inference and RAG (Retrieval-Augmented Generation) for models under 70B parameters.
17+
- High-fidelity 3D rendering, product design, and video streaming.
18+
- GPU-accelerated desktop virtualization (VDI) with NVIDIA RTX Virtual Workstation.
19+
- Scientific visualization and High-Performance Computing (HPC) using FP32.
20+
- Agentic AI application development and deployment.
21+
22+
Sign up to Participate in [NCv6 Public Preview](https://forms.office.com/Pages/ResponsePage.aspx?id=v4j5cvGGr0GRqy180BHbR9s7orOb3OJJnwABCNj_8JdUMzlLSzJFTTdRRE8yU0UxWFFYQlpYV1hDVy4u) !

0 commit comments

Comments
 (0)