-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add support for orchestrations #627
Conversation
87f1d18
to
bac2009
Compare
Oh this is neat. I'll try this when I get a chance with the orchestrations I run and report. |
Is there a way I can get to the orchestrate part? I don't see anything different on this branch... How do I define an orchestration on the system? My orchestrations are just in my file_roots. I have run a few using |
So when I provision my vagrant setups i run a simple orchestration from
But after running i don't see a tab under jobs for orchestrations. I do see the events in the right side under recent jobs. |
3063704
to
5ed992b
Compare
5ed992b
to
2ccc11f
Compare
0a75dc3
to
eca18d5
Compare
fdd4ae5
to
e106bf4
Compare
Quality Gate passedIssues Measures |
orchestrations are similar to highstates.
difference is that highstates are applied to individual minions (possibly multiple at the same time),
but orchestrations are schemes that coordinate work across minions.
this PR makes it possible to:
note that unlike highstates, SaltStack does not allow tracking an orchestration step-by-step. the system just does not generate any useful events for this.
note that the orchestrations page is only visible when there is at least one orchestration defined in the system.
please feel free to try out this feature before it is merged into SaltGUI.
comments and suggestions are welcome!