Skip to content

Commit 5abf6fb

Browse files
Learn Build Service GitHub AppLearn Build Service GitHub App
authored andcommitted
Merging changes synced from https://github.com/MicrosoftDocs/azure-docs-pr (branch live)
2 parents e9b425b + 08e5948 commit 5abf6fb

18 files changed

+192
-170
lines changed

articles/azure-monitor/containers/monitor-kubernetes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ In addition to developing the application, the *developer* maintains the applica
280280
281281
### Azure services for developer
282282
283-
The following table lists the services that are commonly used by the network engineer to monitor the health and performance of the Kubernetes cluster and its components.
283+
The following table lists the services that are commonly used by the developer to monitor the health and performance of the Kubernetes cluster and its components.
284284
285285
286286
| Service | Description |

articles/confidential-computing/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
href: key-rotation-offline.md
137137
- name: Use sample app with guest attestation
138138
href: guest-attestation-example.md
139-
- name: How to leverage virtual TPMs in Azure confidential VMs
139+
- name: Leverage virtual TPMs in Azure confidential VMs
140140
href: how-to-leverage-virtual-tpms-in-azure-confidential-vms.md
141141
- name: Create a custom image for a confidential VM
142142
href: how-to-create-custom-image-confidential-vm.md

articles/confidential-computing/how-to-leverage-virtual-tpms-in-azure-confidential-vms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: How to leverage virtual TPMs in Azure confidential VMs
2+
title: Leverage virtual TPMs in Azure confidential VMs
33
description: Learn how to use the vTPM benefits after building trust in a confidential VM.
44
author: simranparkhe
55
ms.service: virtual-machines
@@ -11,7 +11,7 @@ ms.author: simranparkhe
1111
ms.custom: devx-track-azurecli
1212
---
1313

14-
# How to leverage virtual TPMs in Azure confidential VMs
14+
# Leverage virtual TPMs in Azure confidential VMs
1515

1616
**Applies to:** :heavy_check_mark: Linux VMs
1717

articles/container-instances/container-instances-resource-and-quota-limits.md

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,14 @@ The following limits are default limits that can’t be increased through a quot
5050
| Resource | Actual Limit |
5151
| --- | :--- |
5252
| Standard sku container groups per region per subscription | 100 |
53-
| Standard sku cores (CPUs) per region per subscription | 100 |
54-
| Standard sku cores (CPUs) for K80 GPU per region per subscription | 0 |
53+
| Standard sku cores (CPUs) per region per subscription | 100 |
5554
| Standard sku cores (CPUs) for V100 GPU per region per subscription | 0 |
5655
| Container group creates per hour |300<sup>1</sup> |
5756
| Container group creates per 5 minutes | 100<sup>1</sup> |
5857
| Container group deletes per hour | 300<sup>1</sup> |
5958
| Container group deletes per 5 minutes | 100<sup>1</sup> |
6059

61-
## Standard Core Resources
60+
## Standard Container Resources
6261

6362
### Linux Container Groups
6463

@@ -91,7 +90,29 @@ The following resources are available in all Azure Regions supported by Azure Co
9190
| :----: | :-----: | :-------: |
9291
| 4 | 16 | 20 | Y |
9392

94-
## GPU Resources (Preview)
93+
## Spot Container Resources (Preview)
94+
95+
The following maximum resources are available to a container group deployed using [Spot Containers](container-instances-spot-containers-overview.md) (preview).
96+
97+
> [!NOTE]
98+
> Spot Containers are only available in the following regions at this time: East US 2, West Europe, and West US.
99+
100+
| Max CPU | Max Memory (GB) | VNET Max CPU | VNET Max Memory (GB) | Storage (GB) |
101+
| :---: | :---: | :----: | :-----: | :-------: |
102+
| 4 | 16 | N/A | N/A | 50 |
103+
104+
## Confidential Container Resources (Preview)
105+
106+
The following maximum resources are available to a container group deployed using [Confidential Containers](container-instances-confidential-overview.md) (preview).
107+
108+
> [!NOTE]
109+
> Confidential Containers are only available in the following regions at this time: East US, North Europe, West Europe, and West US.
110+
111+
| Max CPU | Max Memory (GB) | VNET Max CPU | VNET Max Memory (GB) | Storage (GB) |
112+
| :---: | :---: | :----: | :-----: | :-------: |
113+
| 4 | 16 | 4 | 16 | 50 |
114+
115+
## GPU Container Resources (Preview)
95116
> [!IMPORTANT]
96117
> K80 and P100 GPU SKUs are retiring by August 31st, 2023. This is due to the retirement of the underlying VMs used: [NC Series](../virtual-machines/nc-series-retirement.md) and [NCv2 Series](../virtual-machines/ncv2-series-retirement.md) Although V100 SKUs will be available, it is receommended to use Azure Kubernetes Service instead. GPU resources are not fully supported and should not be used for production workloads. Use the following resources to migrate to AKS today: [How to Migrate to AKS](../aks/aks-migration.md).
97118

articles/machine-learning/reference-yaml-deployment-batch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ When `type: model`, the following syntax is enforced:
5959
| `settings.retry_settings.timeout` | integer | The timeout in seconds for scoring a single mini batch. Use larger values when the mini-batch size is bigger or the model is more expensive to run. | | `30` |
6060
| `settings.output_action` | string | Indicates how the output should be organized in the output file. Use `summary_only` if you are generating the output files as indicated at [Customize outputs in model deployments](how-to-deploy-model-custom-output.md). Use `append_row` if you are returning predictions as part of the `run()` function `return` statement. | `append_row`, `summary_only` | `append_row` |
6161
| `settings.output_file_name` | string | Name of the batch scoring output file. | | `predictions.csv` |
62-
| `environment_variables` | object | Dictionary of environment variable key-value pairs to set for each batch scoring job. | | |
62+
| `settings.environment_variables` | object | Dictionary of environment variable key-value pairs to set for each batch scoring job. | | |
6363

6464
### YAML syntax for pipeline component deployments
6565

articles/reliability/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,8 @@
163163
href: ../azure-cache-for-redis/cache-how-to-zone-redundancy.md?toc=/azure/reliability/toc.json&bc=/azure/reliability/breadcrumb/toc.json
164164
- name: Azure Cognitive Search
165165
href: ../search/search-reliability.md?toc=/azure/reliability/toc.json&bc=/azure/reliability/breadcrumb/toc.json
166+
- name: Azure Communications Gateway
167+
href: ../communications-gateway/reliability-communications-gateway.md?toc=/azure/reliability/toc.json&bc=/azure/reliability/breadcrumb/toc.json
166168
- name: Azure Container Apps
167169
href: ../container-apps/disaster-recovery.md?toc=/azure/reliability/toc.json&bc=/azure/reliability/breadcrumb/toc.json
168170
- name: Azure Container Instances

articles/virtual-desktop/whats-new.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: What's new in Azure Virtual Desktop? - Azure
33
description: New features and product updates for Azure Virtual Desktop.
44
author: Heidilohr
55
ms.topic: release-notes
6-
ms.date: 07/18/2023
6+
ms.date: 08/22/2023
77
ms.author: helohr
88
ms.reviewer: thhickli; darank
99
manager: femila
@@ -27,6 +27,16 @@ Make sure to check back here often to keep up with new updates.
2727

2828
Here's what changed in July 2023:
2929

30+
### Watermarking is now generally available
31+
32+
[Watermarking](watermarking.md), when used with [screen capture protection](#screen-capture-protection), helps protect your sensitive information from capture on client endpoints. When you enable watermarking, QR code watermarks appear as part of remote desktops. The QR code contains the connection ID of a remote session that admins can use to trace the session. You can configure watermarking on session hosts and enforce it with the Remote Desktop client.
33+
34+
### Audio call redirection for Azure Virtual Desktop in preview
35+
36+
Call redirection, which optimizes audio calls for WebRTC-based calling apps, is now in preview. Multimedia redirection redirects media content from Azure Virtual Desktop to your local machine for faster processing and rendering. Both Microsoft Edge and Google Chrome support this feature when using the Windows Desktop client.
37+
38+
For more information about which sites are compatible with this feature, see [Call redirection](multimedia-redirection-intro.md#call-redirection).
39+
3040
### Autoscale for personal host pools is currently in preview
3141

3242
Autoscale for personal host pools is now in preview. Autoscale lets you scale your session host virtual machines (VMs) in a host pool up or down according to a schedule to optimize deployment costs.

articles/virtual-network/ip-services/add-dual-stack-ipv6-vm-cli.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
title: Add a dual-stack network to an existing virtual machine - Azure CLI
33
titleSuffix: Azure Virtual Network
44
description: Learn how to add a dual-stack network to an existing virtual machine using the Azure CLI.
5-
author: asudbring
6-
ms.author: allensu
5+
author: mbender-ms
6+
ms.author: mbender
77
ms.service: virtual-network
88
ms.subservice: ip-services
99
ms.topic: how-to
10-
ms.date: 08/24/2022
10+
ms.date: 08/24/2023
1111
ms.custom: template-how-to, devx-track-azurecli
1212
ms.devlang: azurecli
1313
---
1414

1515
# Add a dual-stack network to an existing virtual machine using the Azure CLI
1616

17-
In this article, you'll add IPv6 support to an existing virtual network. You'll configure an existing virtual machine with both IPv4 and IPv6 addresses. When completed, the existing virtual network will support private IPv6 addresses. The existing virtual machine network configuration will contain a public and private IPv4 and IPv6 address.
17+
In this article, you add IPv6 support to an existing virtual network. You configure an existing virtual machine with both IPv4 and IPv6 addresses. When completed, the existing virtual network supports private IPv6 addresses. The existing virtual machine network configuration contains a public and private IPv4 and IPv6 address.
1818

1919
## Prerequisites
2020

@@ -34,7 +34,7 @@ In this article, you'll add IPv6 support to an existing virtual network. You'll
3434

3535
## Add IPv6 to virtual network
3636

37-
In this section, you'll add an IPv6 address space and subnet to your existing virtual network.
37+
In this section, you add an IPv6 address space and subnet to your existing virtual network.
3838

3939
Use [az network vnet update](/cli/azure/network/vnet#az-network-vnet-update) to update the virtual network.
4040

@@ -57,7 +57,7 @@ az network vnet subnet update \
5757

5858
## Create IPv6 public IP address
5959

60-
In this section, you'll create a IPv6 public IP address for the virtual machine.
60+
In this section, you create a IPv6 public IP address for the virtual machine.
6161

6262
Use [az network public-ip create](/cli/azure/network/public-ip#az-network-public-ip-create) to create the public IP address.
6363

articles/virtual-network/ip-services/add-dual-stack-ipv6-vm-portal.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
title: Add a dual-stack network to an existing virtual machine - Azure portal
33
titleSuffix: Azure Virtual Network
44
description: Learn how to add a dual stack network to an existing virtual machine using the Azure portal.
5-
author: asudbring
6-
ms.author: allensu
5+
author: mbender-ms
6+
ms.author: mbender
77
ms.service: virtual-network
88
ms.subservice: ip-services
99
ms.topic: how-to
10-
ms.date: 08/19/2022
10+
ms.date: 08/24/2023
1111
ms.custom: template-how-to
1212
---
1313

1414
# Add a dual-stack network to an existing virtual machine using the Azure portal
1515

16-
In this article, you'll add IPv6 support to an existing virtual network. You'll configure an existing virtual machine with both IPv4 and IPv6 addresses. When completed, the existing virtual network will support private IPv6 addresses. The existing virtual machine network configuration will contain a public and private IPv4 and IPv6 address.
16+
In this article, you add IPv6 support to an existing virtual network. You configure an existing virtual machine with both IPv4 and IPv6 addresses. When completed, the existing virtual network supports private IPv6 addresses. The existing virtual machine network configuration contains a public and private IPv4 and IPv6 address.
1717

1818
## Prerequisites
1919

@@ -29,7 +29,7 @@ In this article, you'll add IPv6 support to an existing virtual network. You'll
2929

3030
## Add IPv6 to virtual network
3131

32-
In this section, you'll add an IPv6 address space and subnet to your existing virtual network.
32+
In this section, you add an IPv6 address space and subnet to your existing virtual network.
3333

3434
1. Sign in to the [Azure portal](https://portal.azure.com).
3535

@@ -55,7 +55,7 @@ In this section, you'll add an IPv6 address space and subnet to your existing vi
5555

5656
## Create IPv6 public IP address
5757

58-
In this section, you'll create a IPv6 public IP address for the virtual machine.
58+
In this section, you create a IPv6 public IP address for the virtual machine.
5959

6060
1. In the search box at the top of the portal, enter **Public IP address**. Select **Public IP addresses** in the search results.
6161

@@ -79,7 +79,7 @@ In this section, you'll create a IPv6 public IP address for the virtual machine.
7979

8080
## Add IPv6 configuration to virtual machine
8181

82-
The virtual machine must be stopped to add the IPv6 configuration to the existing virtual machine. You'll stop the virtual machine and add the IPv6 configuration to the existing virtual machine's network interface.
82+
The virtual machine must be stopped to add the IPv6 configuration to the existing virtual machine. You stop the virtual machine and add the IPv6 configuration to the existing virtual machine's network interface.
8383

8484
1. In the search box at the top of the portal, enter **Virtual machine**. Select **Virtual machines** in the search results.
8585

articles/virtual-network/ip-services/add-dual-stack-ipv6-vm-powershell.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
title: Add a dual-stack network to an existing virtual machine - Azure PowerShell
33
titleSuffix: Azure Virtual Network
44
description: Learn how to add a dual-stack network to an existing virtual machine using Azure PowerShell.
5-
author: asudbring
6-
ms.author: allensu
5+
author: mbender-ms
6+
ms.author: mbender
77
ms.service: virtual-network
88
ms.subservice: ip-services
99
ms.topic: how-to
10-
ms.date: 08/24/2022
10+
ms.date: 08/24/2023
1111
ms.custom: template-how-to, devx-track-azurepowershell
1212
---
1313

1414
# Add a dual-stack network to an existing virtual machine using Azure PowerShell
1515

16-
In this article, you'll add IPv6 support to an existing virtual network. You'll configure an existing virtual machine with both IPv4 and IPv6 addresses. When completed, the existing virtual network will support private IPv6 addresses. The existing virtual machine network configuration will contain a public and private IPv4 and IPv6 address.
16+
In this article, you add IPv6 support to an existing virtual network. You configure an existing virtual machine with both IPv4 and IPv6 addresses. When completed, the existing virtual network supports private IPv6 addresses. The existing virtual machine network configuration contains a public and private IPv4 and IPv6 address.
1717

1818
## Prerequisites
1919

@@ -33,7 +33,7 @@ If you choose to install and use PowerShell locally, this article requires the A
3333

3434
## Add IPv6 to virtual network
3535

36-
In this section, you'll add an IPv6 address space and subnet to your existing virtual network.
36+
In this section, you add an IPv6 address space and subnet to your existing virtual network.
3737

3838
Use [Set-AzVirtualNetwork](/powershell/module/az.network/set-azvirtualnetwork) to update the virtual network.
3939

@@ -79,7 +79,7 @@ Set-AzVirtualNetwork -VirtualNetwork $vnet
7979

8080
## Create IPv6 public IP address
8181

82-
In this section, you'll create a IPv6 public IP address for the virtual machine.
82+
In this section, you create a IPv6 public IP address for the virtual machine.
8383

8484
Use [New-AzPublicIpAddress](/powershell/module/az.network/new-azpublicipaddress) to create the public IP address.
8585

0 commit comments

Comments
 (0)