Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Lsv3/Lasv3 series #176

Merged
merged 1 commit into from
Jun 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/snapshots/size.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
title: VM sizes
description: Lists the different sizes available for virtual machines in Azure.
author: ju-shim
author: lauradolan
ms.service: virtual-machines
ms.subservice: sizes
ms.topic: conceptual
ms.workload: infrastructure-services
ms.date: 04/04/2022
ms.author: jushiman
ms.date: 06/01/2022
ms.author: ladolan
---

# Sizes for virtual machines in Azure
Expand All @@ -26,7 +26,7 @@ This article describes the available sizes and options for the Azure virtual mac
| [General purpose](sizes-general.md) | B, Dsv3, Dv3, Dasv4, Dav4, DSv2, Dv2, Av2, DC, DCv2, Dv4, Dsv4, Ddv4, Ddsv4, Dv5, Dsv5, Ddv5, Ddsv5, Dasv5, Dadsv5 | Balanced CPU-to-memory ratio. Ideal for testing and development, small to medium databases, and low to medium traffic web servers. |
| [Compute optimized](sizes-compute.md) | F, Fs, Fsv2, FX | High CPU-to-memory ratio. Good for medium traffic web servers, network appliances, batch processes, and application servers. |
| [Memory optimized](sizes-memory.md) | Esv3, Ev3, Easv4, Eav4, Ebdsv5, Ebsv5, Ev4, Esv4, Edv4, Edsv4, Ev5, Esv5, Edv5, Edsv5, Easv5, Eadsv5, Mv2, M, DSv2, Dv2 | High memory-to-CPU ratio. Great for relational database servers, medium to large caches, and in-memory analytics. |
| [Storage optimized](sizes-storage.md) | Lsv2 | High disk throughput and IO ideal for Big Data, SQL, NoSQL databases, data warehousing and large transactional databases. |
| [Storage optimized](sizes-storage.md) | Lsv2, Lsv3, Lasv3 | High disk throughput and IO ideal for Big Data, SQL, NoSQL databases, data warehousing and large transactional databases. |
| [GPU](sizes-gpu.md) | NC, NCv2, NCv3, NCasT4_v3, ND, NDv2, NV, NVv3, NVv4, NDasrA100_v4, NDm_A100_v4 | Specialized virtual machines targeted for heavy graphic rendering and video editing, as well as model training and inferencing (ND) with deep learning. Available with single or multiple GPUs. |
| [High performance compute](sizes-hpc.md) | HB, HBv2, HBv3, HC, H | Our fastest and most powerful CPU virtual machines with optional high-throughput network interfaces (RDMA). |

Expand Down
12 changes: 12 additions & 0 deletions rules/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,18 @@ var validMachineSizes = []string{
"Standard_L48s_v2",
"Standard_L64s_v2",
"Standard_L80s_v2",
"Standard_L8s_v3",
"Standard_L16s_v3",
"Standard_L32s_v3",
"Standard_L48s_v3",
"Standard_L64s_v3",
"Standard_L80s_v3",
"Standard_L8as_v3",
"Standard_L16as_v3",
"Standard_L32as_v3",
"Standard_L48as_v3",
"Standard_L64as_v3",
"Standard_L80as_v3",
"Standard_M64s",
"Standard_M64ms",
"Standard_M128s",
Expand Down