aboutsummaryrefslogtreecommitdiffstats
path: root/roles/podman
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2022-02-01 22:28:06 +0100
committerGravatar Joe Banks <[email protected]>2022-02-05 14:31:37 +0000
commit761a8e124e84a82bd2272228cbff2a1260456f51 (patch)
treeb6f7c3138498e05ec2c679a1e34ee9657f3d8848 /roles/podman
parentEpand entire dict when adding psql users and databases (diff)
Add podman role and improve playbook organization
This PR adds a new podman role, see #18. The playbook is merged into sections for each group of hosts that we want to deploy to. To limit by role now, use tags, such as `-t role::podman`.
Diffstat (limited to 'roles/podman')
-rw-r--r--roles/podman/tasks/main.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/podman/tasks/main.yml b/roles/podman/tasks/main.yml
new file mode 100644
index 0000000..e0cdb09
--- /dev/null
+++ b/roles/podman/tasks/main.yml
@@ -0,0 +1,7 @@
+---
+- name: install podman
+ package:
+ name: podman
+ state: present
+ tags:
+ - role::podman