Enable docker and podman

This commit is contained in:
Jason Rothstein 2020-12-20 17:46:32 -06:00
parent fce8a753dc
commit dda2d043fc
2 changed files with 16 additions and 0 deletions

View File

@ -3,6 +3,9 @@ roles:
- name: 'ensure_ansible_prereq' - name: 'ensure_ansible_prereq'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_ansible_prereq.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_ansible_prereq.git'
version: 'master' version: 'master'
- name: 'ensure_docker'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_docker.git'
version: 'master'
- name: 'ensure_cockpit' - name: 'ensure_cockpit'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_cockpit.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_cockpit.git'
version: 'master' version: 'master'
@ -12,6 +15,9 @@ roles:
- name: 'ensure_os_patch' - name: 'ensure_os_patch'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_os_patch.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_os_patch.git'
version: 'master' version: 'master'
- name: 'ensure_podman'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_podman.git'
version: 'master'
- name: 'ensure_repo_epel' - name: 'ensure_repo_epel'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_repo_epel.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_repo_epel.git'
version: 'master' version: 'master'

View File

@ -17,4 +17,14 @@
- role: 'ensure_repo_rpmfusion' - role: 'ensure_repo_rpmfusion'
- role: 'ensure_selinux' - role: 'ensure_selinux'
- role: 'ensure_timezone' - role: 'ensure_timezone'
- name: 'docker'
hosts: 'docker'
gather_facts: 'yes'
roles:
- role: 'ensure_docker'
- name: 'podman'
hosts: 'podman'
gather_facts: 'yes'
roles:
- role: 'ensure_podman'
... ...