add docker-ce role

This commit is contained in:
ace 2021-10-15 16:36:25 +03:00
commit bb2ba7fdda
No known key found for this signature in database
GPG Key ID: 2E47CC17BA7F8CF0
5 changed files with 56 additions and 0 deletions

0
README.md Normal file
View File

2
defaults/main.yml Normal file
View File

@ -0,0 +1,2 @@
---
docker_version: "20.10.9-3.el{{ansible_distribution_major_version}}"

0
meta/main.yaml Normal file
View File

50
tasks/centos.yml Normal file
View File

@ -0,0 +1,50 @@
---
- name: Add Docker CE Stable repo
yum_repository:
name: "docker-ce-stable"
description: "Docker CE Stable - $basearch"
file: docker-ce
baseurl: "https://download.docker.com/linux/centos/$releasever/$basearch/stable"
enabled: no
gpgcheck: yes
gpgkey: "https://download.docker.com/linux/centos/gpg"
async: yes
- name: Ensure docker version {{ docker_version }} installed
yum:
name: "docker-ce-{{ docker_version }}"
state: present
enablerepo: "docker-ce-stable"
- name: Ensure docker service enabled and started
systemd:
name: docker
enabled: yes
state: started
- name: Ensure python-docker-py installed
yum:
name: python-docker-py
state: present
enablerepo: extras
when:
- ansible_os_family == 'RedHat'
- ansible_distribution_major_version <= '7'
- name: Add Epel repo
yum:
name: epel-release
state: present
when:
- ansible_os_family == 'RedHat'
- ansible_distribution_major_version == '8'
- name: Ensure python3-docker installed
yum:
name: python3-docker
state: present
when:
- ansible_os_family == 'RedHat'
- ansible_distribution_major_version == '8'

4
tasks/main.yml Normal file
View File

@ -0,0 +1,4 @@
---
- include_tasks: centos.yml
when: ansible_os_family == 'RedHat'