generated from interTwin-eu/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 4
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
cannot run multiple containers in parallel in the same pod #47
Comments
After reworking it, this is a proper fix. I also replaced bash with sh, everything here is POSIX shell and is portable across HPCs. To be tested...
|
antoinetran
added a commit
to antoinetran/interlink-slurm-plugin
that referenced
this issue
Jan 29, 2025
pod with multiple containers are run in parallel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example of one pod with one initContainer, one container main, one container wait.
The
job.sh
generated is:This script is equivalent in terms of structure to
The result is we wait for step init to finish, and then, the wait container is run but the main container is not run in parallel.
The expected result is for init to finish, and then to run wait and main in parallel.
My proposition of fix is:
The text was updated successfully, but these errors were encountered: