move from docker to podman

wikijs: bump to v2.5.283, helm chart v2.2.20
This commit is contained in:
ace
2022-05-24 12:34:39 +03:00
parent fbf3ae07e5
commit 41da1d8fbc
7 changed files with 71 additions and 1 deletions

1
roles/podman/README.md Normal file
View File

@ -0,0 +1 @@
Install podman.

View File

@ -0,0 +1,2 @@
---
podman_version: "{{ '1.6.4' if ansible_facts['distribution_major_version'] == '7' else '4.0.2' if ansible_facts['distribution_major_version'] == '8' }}"

View File

@ -0,0 +1,7 @@
---
galaxy_info:
description: Podman
galaxy_tags:
- podman
dependencies: []

View File

@ -0,0 +1,5 @@
---
- name: Ensure podman {{ podman_version }} installed
yum:
name: "podman-{{ podman_version }}"
state: present

View File

@ -0,0 +1,3 @@
---
- name: Include podman install
include_tasks: "{{ ansible_facts['os_family'] }}.yaml"