Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- ---
-
- - name: Ensure Docker repository is enabled
- ansible.builtin.template:
- src: "{{ role_path }}/files/yum.repos.d/docker-ce-centos.repo"
- dest: "/etc/yum.repos.d/docker-ce.repo"
- owner: "root"
- group: "root"
- mode: 0644
- when: matrix_docker_installation_enabled | bool and matrix_docker_package_name == 'docker-ce'
-
- - name: Ensure Docker's RPM key is trusted
- ansible.builtin.rpm_key:
- state: present
- key: https://download.docker.com/linux/centos/gpg
- when: matrix_docker_installation_enabled | bool and matrix_docker_package_name == 'docker-ce'
-
- - name: Ensure EPEL is installed
- ansible.builtin.yum:
- name:
- - epel-release
- state: present
- update_cache: true
-
- - name: Ensure yum packages are installed
- ansible.builtin.yum:
- name:
- - "{{ matrix_ntpd_package }}"
- state: present
- update_cache: true
-
- - name: Ensure Docker is installed
- ansible.builtin.yum:
- name:
- - "{{ matrix_docker_package_name }}"
- - python3-pip
- state: present
- when: matrix_docker_installation_enabled | bool
-
- - name: Ensure Docker-Py is installed
- ansible.builtin.pip:
- name: docker-py
- state: present
- when: matrix_docker_installation_enabled | bool
|