Podman

Document Control

TODO:

  • Overall structure.
  • Initial draft complete
  • Testing
  • Ready

Ansible Role Ansible Quality Score Build Status GitHub issues GitHub last commit

User Story: Podman

As a: UNIX and Linux system administrator

I want to: install podman

So that: I can create and manage containers without using docker.

Using the role

Using the role in a playbook
---
- name: Install podman
  hosts: all

  tasks:
    - name: podman is configured
      import_role:
        name: crivetimihai.podman
      vars:
        podman_remove_packages: true
        podman_copy_templates: true
        podman_max_user_namespaces: 10000
        podman_user: devops
        podman_subuid: 100000
        podman_subgid: 65536
      tags: podman
# Install the role
ansible-galaxy install crivetimihai.podman

# Run the playbook
ansible-playbook podman-playbook.yml

Last update: 2020-02-02