We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ca2d7f commit f5aefb1Copy full SHA for f5aefb1
ansible/roles/compute_init/files/compute-init.yml
@@ -62,12 +62,6 @@
62
group: root
63
mode: u=rX,g=rwX,o=
64
65
- - name: Wait for NFS to reachable (checks host network up)
66
- ansible.builtin.wait_for:
67
- port: 2049
68
- host: '{{ server_node_ip }}'
69
- timeout: 120
70
-
71
- name: Mount /mnt/cluster
72
mount:
73
path: /mnt/cluster
@@ -76,6 +70,9 @@
76
opts: ro,sync
77
state: mounted
78
register: _mount_mnt_cluster
+ ignore_errors: true
74
+ # exits from playbook if this failed below, allowing ansible-init to
75
+ # finish, which allows site.yml to continue on initial deploy
79
80
- block:
81
- name: Report skipping initialization if cannot mount nfs
0 commit comments