Skip to content

Commit

Permalink
Merge pull request #1677 from Azure/feature/1676
Browse files Browse the repository at this point in the history
use AlmaLinux by default when deploying with the Marketplace application
  • Loading branch information
xpillons authored Sep 8, 2023
2 parents 9eb10ee + c56dfce commit 110de2e
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions marketplace/solution/marketplace_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ locked_down_network:
enforce: false
public_ip: "[steps('network').publicIp]" # Enable public IP creation for Jumpbox, OnDemand and create images. Default to true

linux_base_image: "OpenLogic:CentOS:7_9-gen2:latest" # publisher:offer:sku:version or image_id
linux_base_image: almalinux:almalinux-x86_64:8_7-gen2:latest # publisher:offer:sku:version or image_id
windows_base_image: "MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:latest" # publisher:offer:sku:version or image_id

deployer:
Expand Down Expand Up @@ -124,6 +124,8 @@ queue_manager: "[steps('scheduler').scheduler]"
slurm:
accounting_enabled: "[if(equals(steps('scheduler').scheduler, 'slurm'), steps('scheduler').slurmAccounting, false)]"
slurm_version: 20.11.9
# CycleCloud for SLURM project version as defined in https://github.com/Azure/cyclecloud-slurm/releases. Currently supported: 2.7.0-2.7.2. Default to 2.7.2
cyclecloud_slurm_version: 2.7.2

enroot:
enroot_version: 3.4.1
Expand All @@ -147,44 +149,44 @@ autoscale:
queues:
- name: execute
vm_size: Standard_F2s_v2
max_core_count: 512
image: azhpc:azhop-compute:centos-7_9:latest
max_core_count: 128
image: azhpc:azhop-compute:almalinux-8_7:latest
ColocateNodes: false
- name: hc44rs
vm_size: Standard_HC44rs
max_core_count: 440
image: azhpc:azhop-compute:centos-7_9:latest
image: azhpc:azhop-compute:almalinux-8_7:latest
EnableAcceleratedNetworking: true
- name: hb120v2
vm_size: Standard_HB120rs_v2
max_core_count: 1200
image: azhpc:azhop-compute:centos-7_9:latest
image: azhpc:azhop-compute:almalinux-8_7:latest
EnableAcceleratedNetworking: true
- name: hb120v3
vm_size: Standard_HB120rs_v3
max_core_count: 1200
image: azhpc:azhop-compute:centos-7_9:latest
image: azhpc:azhop-compute:almalinux-8_7:latest
EnableAcceleratedNetworking: true
# Queue dedicated to GPU remote viz nodes. This name is fixed and can't be changed
- name: viz3d
vm_size: Standard_NV12s_v3
max_core_count: 48
# Use the pre-built azhop image from the marketplace
image: azhpc:azhop-desktop:centos-7_9:latest
image: azhpc:azhop-desktop:almalinux-8_7:latest
ColocateNodes: false
EnableAcceleratedNetworking: true
# Queue dedicated to share GPU remote viz nodes. This name is fixed and can't be changed
- name: largeviz3d
vm_size: Standard_NV48s_v3
max_core_count: 96
image: azhpc:azhop-desktop:centos-7_9:latest
image: azhpc:azhop-desktop:almalinux-8_7:latest
ColocateNodes: false
EnableAcceleratedNetworking: true
# Queue dedicated to non GPU remote viz nodes. This name is fixed and can't be changed
- name: viz
vm_size: Standard_D8s_v5
max_core_count: 200
image: azhpc:azhop-desktop:centos-7_9:latest
image: azhpc:azhop-desktop:almalinux-8_7:latest
ColocateNodes: false
EnableAcceleratedNetworking: true

Expand Down

0 comments on commit 110de2e

Please sign in to comment.