-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
kic: fix var race condition #8657
Comments
The race condition is because we have And if the volume wins the race, then we won't copy those files from the image to the volume - and miss some important ones... |
dupe of #8458 |
The #8458 and #8151 are about making sure that the storage provisioner mounts the correct directories. However, this particular issue is about the race condition that happens between "start" and "preload". So we are going to fix the storage mounts in that other issue, and this is about fixing the start up order. Instead we are going to make sure that the volume is created by "docker run", and not create an empty one. It's a bit unfortunate that we opened a new "blank" story for the new milestone, but the issue is: #8179 #8100 So the error we are trying to fix here, is the bootup error:
Or we have some more pretty way to make sure it happens... Maybe changing using /var also for tar, would be enough ? |
As mentioned in the other issues, we want to copy:
And we need to have both of them in the final volume. |
Now that the real issues have been added, we don't need this (redundant) placeholder |
No description provided.
The text was updated successfully, but these errors were encountered: