Add Podman deployment configuration

This commit is contained in:
2025-08-07 00:24:58 -04:00
parent ccf6b10a0e
commit d954c64e23
4 changed files with 86 additions and 0 deletions

14
dev/host_vars/podman.yml Normal file
View File

@@ -0,0 +1,14 @@
# base
allow_reboot: false
manage_network: false
users:
kris:
uid: 1001
gid: 1001
home: true
# podman
user_namespaces:
- kris

8
dev/podman.yml Normal file
View File

@@ -0,0 +1,8 @@
- name: Install Podman server
hosts: all
become: true
vars_files:
- host_vars/podman.yml
roles:
- base
- podman