-
-
Save AliMirlou/5f6f9daf6db77d6f131271c843d0a344 to your computer and use it in GitHub Desktop.
Remove stale dockershim containers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
## If you see messages like this on your kubelet journal: | |
## | |
## Mar 25 22:36:44 ip-10-0-3-67.ec2.internal dockerd-current[28612]: time="2018-03-25T22:36:44.419126265Z" level=error msg="Handler for GET /v1.24/containers/60532fa8184bdf41e52788194faa1253f1168e3ad4f54f7c159192fe66c4bb1d/json returned error: No such container: 60532fa8184bdf41e52788194faa1253f1168e3ad4f54f7c159192fe66c4bb1d" | |
## | |
## use this script to remove dockershim container files from /var/lib/dockershim/sandbox | |
import os, glob, subprocess | |
containers = subprocess.check_output(["docker", "ps", "--no-trunc", "-qa"]).split() | |
for p in glob.glob('/var/lib/dockershim/sandbox/*'): | |
c = p.split('/')[-1] | |
if c not in containers: | |
print('Removing stale container', c) | |
os.unlink(p) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment