The last step of a manual deployment is ensuring highstates on all nodes.
To ensure highstates:
Log in to the Salt Master node.
Verify that all machines have connectivity with the Salt Master node:
salt '*' test.ping
Ensure highstate on the Salt Master node:
salt-call state.apply -l debug
Ensure highstate on the GlusterFS nodes one by one to avoid race condition:
salt -C 'I@glusterfs:server' state.apply -b1 -l debug
Ensure highstate on the rest of the nodes:
salt -C '* and not I@glusterfs:server and not cfg*' state.apply -l debug