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

feature/CON-22479_advancedVMFiltering #533

Merged
merged 3 commits into from
Sep 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 51 additions & 1 deletion api/services/ocean/aksV2/schemas/ocean-vmSizes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,54 @@ properties:
Vm sizes belonging to a series from the list will not be available for scaling.
items:
type: string
example: [ "Bs", "Da v4" ]
example: [ "Bs", "Da v4" ]
minData:
description: |
Minimum number of data disks available.
type: integer
minimum: 1
maximum: 64
example: 1
minGpu:
description: |
Minimum number of GPUs available.
type: number
format: double
minimum: 0.0
maximum: 8.0
example: 1.0
maxGpu:
description: |
Maximum number of GPUs available.
type: number
format: double
minimum: 0.0
maximum: 8.0
example: 2.0
diskPerformance:
type: string
description: |
The filtered vm sizes will support at least one of the classes from this list.
enum: [ "Standard", "Premium" ]
example: Standard
acceleratedNetworking:
type: string
description: |
In case acceleratedNetworking is set to Enabled, accelerated networking applies only to the VM that enables it.
enum: [ "Enabled", "Disabled" ]
example: Enabled
minNICs:
description: |
Minimum number of network interfaces.
type: integer
minimum: 1
maximum: 16
example: 4
vmTypes:
type: array
description: |
The filtered vm types will belong to one of the vm types from this list.
items:
type: string
enum: [ "generalPurpose", "memoryOptimized", "computeOptimized", "highPerformanceCompute", "storageOptimized", "GPU" ]
example: [ "memoryOptimized" ]
Loading