Skip to content

Commit b12d0d0

Browse files
committed
Fixed deployment name clash for a3-megagpu and a3-ultragpu
1 parent dd00b46 commit b12d0d0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

tools/cloud-build/daily-tests/tests/ml-a3-megagpu-slurm-ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
# region, zone must be defined in build file with --extra-vars flag!
1818
test_name: a3m-slurm
19-
deployment_name: a3m-slurm-{{ build }}
20-
slurm_cluster_name: "a3m{{ build[0:4] }}"
19+
deployment_name: a3m-{{ build[0:3] }}{{ build[-3:] }}-slurm
20+
slurm_cluster_name: "a3m{{ build[0:3] }}{{ build[-3:] }}"
2121
workspace: /workspace
2222
blueprint_yaml: "{{ workspace }}/examples/machine-learning/a3-megagpu-8g/a3mega-slurm-blueprint.yaml"
2323
login_node: "{{ slurm_cluster_name }}-login-*"

tools/cloud-build/daily-tests/tests/ml-a3-ultragpu-jbvms.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616

1717
# region, zone must be defined in build file with --extra-vars flag!
1818
test_name: a3u-jbvms
19-
deployment_name: a3u-jbvms-{{ build }}
19+
deployment_name: a3u-{{ build[0:3] }}{{ build[-3:] }}-jbvms
2020
hostname_prefix: "{{ deployment_name }}-beowulf"
2121
workspace: /workspace
2222
blueprint_yaml: "{{ workspace }}/examples/machine-learning/a3-ultragpu-8g/a3ultra-vm.yaml"
2323
region: europe-west1
2424
zone: europe-west1-b
25-
network: "{{ test_name }}-net-0"
25+
network: "{{ deployment_name }}-net-0"
2626
remote_node: "{{ hostname_prefix }}-0"
2727
post_deploy_tests:
2828
- test-validation/test-mounts.yml
@@ -36,4 +36,4 @@ cli_deployment_vars:
3636
disk_size_gb: 200
3737
a3u_reservation_name: hpc-exr-2
3838
a3u_provisioning_model: RESERVATION_BOUND
39-
base_network_name: "{{ test_name }}"
39+
base_network_name: "{{ deployment_name }}"

tools/cloud-build/daily-tests/tests/ml-a3-ultragpu-slurm.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616

1717
# region, zone must be defined in build file with --extra-vars flag!
1818
test_name: a3u-slurm
19-
deployment_name: a3u-slurm-{{ build }}
20-
slurm_cluster_name: "a3u{{ build[0:4] }}"
19+
deployment_name: a3u-{{ build[0:3] }}{{ build[-3:] }}-slurm
20+
slurm_cluster_name: "a3u{{ build[0:3] }}{{ build[-3:] }}"
2121
workspace: /workspace
2222
blueprint_yaml: "{{ workspace }}/examples/machine-learning/a3-ultragpu-8g/a3ultra-slurm-blueprint.yaml"
2323
login_node: "{{ slurm_cluster_name }}-slurm-login-*"
2424
controller_node: "{{ slurm_cluster_name }}-controller"
2525
region: europe-west1
2626
zone: europe-west1-b
27-
network: "{{ test_name }}-net-0"
27+
network: "{{ deployment_name }}-net-0"
2828
post_deploy_tests:
2929
- test-validation/test-mounts.yml
3030
- test-validation/test-partitions.yml
@@ -49,4 +49,4 @@ cli_deployment_vars:
4949
disk_size_gb: 200
5050
a3u_cluster_size: 2
5151
a3u_reservation_name: hpc-exr-2
52-
base_network_name: "{{ test_name }}"
52+
base_network_name: "{{ deployment_name }}"

0 commit comments

Comments
 (0)