From 321e364263595c42ae8e839b4598912ede07a7ef Mon Sep 17 00:00:00 2001 From: "Xavier Pillons (MSFT)" Date: Tue, 27 Feb 2024 11:03:47 +0100 Subject: [PATCH] add srun port range in the NSG rule --- bicep/azhop.bicep | 2 +- tf/variables_local.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bicep/azhop.bicep b/bicep/azhop.bicep index ff9916684..36cd1d8a0 100644 --- a/bicep/azhop.bicep +++ b/bicep/azhop.bicep @@ -464,7 +464,7 @@ var config = { Rdp: ['3389'] // Pbs: ['6200', '15001-15009', '17001', '32768-61000'] // Slurm: ['6817-6819'] - Shed: (queue_manager == 'slurm') ? ['6817-6819'] : ['6200', '15001-15009', '17001', '32768-61000'] + Shed: (queue_manager == 'slurm') ? ['6817-6819', '59000-61000'] : ['6200', '15001-15009', '17001', '32768-61000'] Lustre: ['988', '1019-1023'] Nfs: ['111', '635', '2049', '4045', '4046'] SMB: ['445'] diff --git a/tf/variables_local.tf b/tf/variables_local.tf index 95e95a457..61fc2dbff 100644 --- a/tf/variables_local.tf +++ b/tf/variables_local.tf @@ -381,7 +381,7 @@ locals { Rdp = ["3389"] #Pbs = ["6200", "15001-15009", "17001", "32768-61000"] #Slurmd = ["6817-6819"] - Sched = (local.queue_manager == "slurm") ? ["6817-6819"] : ["6200", "15001-15009", "17001", "32768-61000"] + Sched = (local.queue_manager == "slurm") ? ["6817-6819", "59000-61000"] : ["6200", "15001-15009", "17001", "32768-61000"] Lustre = ["635", "988"] Nfs = ["111", "635", "2049", "4045", "4046"] SMB = ["445"]