Skip to content
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
9 changes: 3 additions & 6 deletions ansible/roles/compute_init/files/compute-init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,6 @@
group: root
mode: u=rX,g=rwX,o=

- name: Wait for NFS to reachable (checks host network up)
ansible.builtin.wait_for:
port: 2049
host: '{{ server_node_ip }}'
timeout: 120

- name: Mount /mnt/cluster
mount:
path: /mnt/cluster
Expand All @@ -76,6 +70,9 @@
opts: ro,sync
state: mounted
register: _mount_mnt_cluster
ignore_errors: true
# exits from playbook if this failed below, allowing ansible-init to
# finish, which allows site.yml to continue on initial deploy

- block:
- name: Report skipping initialization if cannot mount nfs
Expand Down
4 changes: 2 additions & 2 deletions environments/.stackhpc/tofu/cluster_image.auto.tfvars.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"cluster_image": {
"RL8": "openhpc-RL8-250408-0812-c3b68b9c",
"RL9": "openhpc-RL9-250408-0813-c3b68b9c"
"RL8": "openhpc-RL8-250409-0953-f5aefb1e",
"RL9": "openhpc-RL9-250409-0953-f5aefb1e"
}
}