zuul-jobs/roles/install-podman/tasks/Ubuntu.yaml
James E. Blair 68ea061fb2 install-podman: also install slirp4netns
This is required in order to perform port forwarding when running
rootless.

Again, unclear why this isn't required in the package.

Change-Id: I61964a23ce7c80b1af149cb7f98897367e970d45
2019-11-21 14:27:54 -08:00

15 lines
247 B
YAML

- name: Install projectatomic PPA
apt_repository:
repo: 'ppa:projectatomic/ppa'
state: present
become: yes
- name: Install podman
package:
name:
- podman
- uidmap
- slirp4netns
state: present
become: yes