-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
glusterfs containers can't start on 3.7 with docker 1.13+ #6431
Comments
@dustymabe I assume you have no reasonable way to downgrade to docker-1.12 on this as it's atomic host? |
We've had docker 1.13 in Fedora for some time now and going backwards is not desirable.
hi @sjenning :) |
Even if it weren't atomic host Docker 1.12 was never available for Fedora 27. |
PR opened to backport the revert from upstream openshift/origin#17722 |
Issues go stale after 90d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle stale |
Stale issues rot after 30d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle rotten |
Rotten issues close after 30d of inactivity. Reopen the issue by commenting /close |
@openshift-bot: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
In Fedora we currently have
docker-1.13.1-42.git4402c09.fc27.x86_64
. There was a change in kube 1.7 to use shared PID namespaces in a pod if docker > 1.13+. It causes issues with our gluster pods (systemd in a container):This specific issue with gluster is documented upstream and they actually reverted the change (so back to default to no shared PID namespace) in kube 1.8. Kube 1.7 still has the behavior but there is a
--docker-disable-shared-pid
flag that we can give to the kubelet to change the behavior to what we desire (and what is the default in 1.6 & 1.8) and get glusterfs working again.so... Two options for a fix:
--docker-disable-shared-pid
flag to the kubelet using openshift ansible when origin 3.7 && docker 1.13Note: If we go the
--docker-disable-shared-pid
they'll probably remove that flag in the future when it is no longer needed so we might have to add logic to "remove" the flag on an upgrade one day. Upstream issue to track that here.The text was updated successfully, but these errors were encountered: