-
Notifications
You must be signed in to change notification settings - Fork 266
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
Adding HostExec for stages and RestartPolicy #2238
Conversation
thanks @steiler The idea is that host execs are typically preparation commands, so they would benefit form running first, and then the container stage execs would follow |
I've also thought about orders. The other option would be to reorg that part and make it more like
That would allow to run them in any order ... |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2238 +/- ##
==========================================
+ Coverage 51.94% 52.12% +0.18%
==========================================
Files 172 172
Lines 12658 12714 +56
==========================================
+ Hits 6575 6627 +52
+ Misses 5175 5174 -1
- Partials 908 913 +5
|
This is way better, I agree |
Adding the RestartPolicy as a knob, also cleaning up the docker runtime from referencing specific node kinds.
Further implements host-exec per stage, which executes commands in the host namespace as part of the stages of a specific node.
Tackling the two topics that surfaced in #2233
The json schema update is missing so far, as well as docs update.