summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-12-14 21:25:02 +0100
committerGitHub <noreply@github.com>2019-12-14 21:25:02 +0100
commit6c7b6d994acddee0d50cec9bbe45fb4cb720a08d (patch)
tree4597eb2bed2eab3a4c05c7498692b68ae7088d87
parent885967faaa97b23b358472e054d46e57253c4af7 (diff)
parenta8460aa0847ebbe320598564827829e8b29ea544 (diff)
downloadpodman-6c7b6d994acddee0d50cec9bbe45fb4cb720a08d.tar.gz
podman-6c7b6d994acddee0d50cec9bbe45fb4cb720a08d.tar.bz2
podman-6c7b6d994acddee0d50cec9bbe45fb4cb720a08d.zip
Merge pull request #4583 from nitrocode/patch-1
troubleshooting.md: added #19 not enough ids
-rw-r--r--troubleshooting.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/troubleshooting.md b/troubleshooting.md
index 9def0e08b..432c0e32b 100644
--- a/troubleshooting.md
+++ b/troubleshooting.md
@@ -442,3 +442,30 @@ Attempts to run podman result in
#### Solution
One workaround is to disable Secure Boot in your BIOS.
+
+### 19) error creating libpod runtime: there might not be enough IDs available in the namespace
+
+Unable to pull images
+
+#### Symptom
+
+```console
+$ podman unshare cat /proc/self/uid_map
+ 0 1000 1
+```
+
+#### Solution
+
+```console
+$ podman system migrate
+```
+
+Original command now returns
+
+```
+$ podman unshare cat /proc/self/uid_map
+ 0 1000 1
+ 1 100000 65536
+```
+
+Reference [subuid](http://man7.org/linux/man-pages/man5/subuid.5.html) and [subgid](http://man7.org/linux/man-pages/man5/subgid.5.html) man pages for more detail. \ No newline at end of file