Skip to content

Commit

Permalink
Merge pull request #4583 from nitrocode/patch-1
Browse files Browse the repository at this point in the history
troubleshooting.md: added #19 not enough ids
  • Loading branch information
openshift-merge-robot committed Dec 14, 2019
2 parents 885967f + a8460aa commit 6c7b6d9
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit 6c7b6d9

Please sign in to comment.