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

fix bugs in config file formatting #2

Merged
merged 4 commits into from
Jan 29, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=America/New_York \
DEBIAN_FRONTEND=noninteractive

LABEL author ="Tim Meyers"
LABEL version ="0.1"
LABEL email ="tmeyers@microsoft.com"
LABEL author "Tim Meyers"
LABEL version "0.1"
LABEL email "tmeyers@microsoft.com"

LABEL org.opencontainers.image.description "This container provides a self-contained environment for deploying the Azure HPC On-Demand Platform (AZ HOP)."

ENV AZ_HOP_VERSION="v1.0.40" \
AZ_HOP_BRANCH="main" \
Expand Down Expand Up @@ -35,7 +37,7 @@ RUN apt-get update && \
# Install Azure CLI
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash

RUN git clone --branch ${AZ_HOP_BRANCH} ${AZ_HOP_REPO} /az-hop
RUN git clone --recursive ${AZ_HOP_REPO} --branch ${AZ_HOP_BRANCH} /az-hop

# Set the working directory to /az-hop
WORKDIR /az-hop
Expand Down
7 changes: 3 additions & 4 deletions config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ resource_group: azhop-rg
anf:
create: true
# Size of the ANF pool and unique volume (min: 4TB, max: 100TB)
homefs_size_tb: 1
homefs_size_tb: 4
# Service level of the ANF volume, can be: Standard, Premium, Ultra
homefs_service_level: Standard

Expand Down Expand Up @@ -117,7 +117,7 @@ queues:
# 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: 2 #24
max_core_count: 2 #24
image: azhpc:azhop-desktop:centos-7_9:latest
ColocateNodes: false
EnableAcceleratedNetworking: true
Expand All @@ -142,5 +142,4 @@ applications:
enabled: true
bc_jupyter:
enabled: true
144,1 Bot 45,1 60%


Loading