Skip to content

Commit

Permalink
Merge pull request #2935 from tpdownes/fix_a3_localssd
Browse files Browse the repository at this point in the history
Update permissions for local SSD mounts to allow non-superuser write access
  • Loading branch information
nick-stroud authored Aug 15, 2024
2 parents 2bb483b + da0a133 commit 0ef79d3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion community/examples/hpc-slurm-local-ssd-v5-legacy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ deployment_groups:
local_ssd_filesystem:
fs_type: ext4
mountpoint: /mnt/localssd
permissions: "0755" # must quote numeric filesystem permissions!
permissions: "1777" # must quote numeric filesystem permissions!

- id: compute_node_group
source: community/modules/compute/schedmd-slurm-gcp-v5-node-group
Expand Down
2 changes: 1 addition & 1 deletion community/examples/hpc-slurm-local-ssd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ deployment_groups:
local_ssd_filesystem:
fs_type: ext4
mountpoint: /mnt/localssd
permissions: "0755" # must quote numeric filesystem permissions!
permissions: "1777" # must quote numeric filesystem permissions!

- id: nodeset
source: community/modules/compute/schedmd-slurm-gcp-v6-nodeset
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ deployment_groups:
# mount local SSD filesystems
local_ssd_filesystem:
mountpoint: /mnt/localssd
permissions: 1777
permissions: "1777" # must quote numeric filesystem permissions!
runners:
- type: ansible-local
destination: enable_nvidia_dcgm.yml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ deployment_groups:
# mount local SSD filesystems
local_ssd_filesystem:
mountpoint: /mnt/localssd
permissions: "0755" # must quote numeric filesystem permissions!
permissions: "1777" # must quote numeric filesystem permissions!
runners:
- type: shell
destination: setup_aperture.sh
Expand Down

0 comments on commit 0ef79d3

Please sign in to comment.