Hi,
I have a scenario where salt state is going to do package updates on number of minions, the salt state itself takes 10-15 minutes to complete, I want to use this state inside the orchestrion and don't want to wait for the completion of state, what is the correct way of specifying the async option inside the salt orchestration,I couldn't find any example in the documentation so reached out here:
Here is my salt-orchestration:
patch_update.sls
Repo_Cheeck:
salt.state:
- tgt: minion1,minion2,minion3
- tgt_type: list
- sls:
- repo_check
-- async
Patches_Update
salt.state:
- tgt: minion1,minion2,minion3
- tgt_type: list
- sls:
- linux_patching
-- async
Is there any documentation related to this?
Thanks.
RV