1727b3501f
This was introduced in143e2272ff
Extra repo is enabled by default in CentOS, and is not the right repo for EL8 Instead of adding a CentOS repo to RHEL, enable the needed RHEL repos with rhsm_repository For RHEL 7, we need the "extras" repo for container-selinux For RHEL 8, we need the "appstream" repo for container-selinux, ipvsadm and socat Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com> (cherry picked from commit8f2b0772f9
)
32 lines
995 B
YAML
32 lines
995 B
YAML
---
|
|
- name: ensure containerd repository public key is installed
|
|
apt_key:
|
|
id: "{{ item }}"
|
|
url: "{{ containerd_repo_key_info.url }}"
|
|
state: present
|
|
register: keyserver_task_result
|
|
until: keyserver_task_result is succeeded
|
|
retries: 4
|
|
delay: "{{ retry_stagger | d(3) }}"
|
|
with_items: "{{ containerd_repo_key_info.repo_keys }}"
|
|
environment: "{{ proxy_env }}"
|
|
when: ansible_pkg_mgr == 'apt'
|
|
|
|
- name: ensure containerd repository is enabled
|
|
apt_repository:
|
|
repo: "{{ item }}"
|
|
state: present
|
|
with_items: "{{ containerd_repo_info.repos }}"
|
|
when: ansible_pkg_mgr == 'apt'
|
|
|
|
- name: Configure containerd repository on Fedora
|
|
template:
|
|
src: "fedora_containerd.repo.j2"
|
|
dest: "{{ yum_repo_dir }}/containerd.repo"
|
|
when: ansible_distribution == "Fedora"
|
|
|
|
- name: Configure containerd repository on RedHat/CentOS
|
|
template:
|
|
src: "rh_containerd.repo.j2"
|
|
dest: "{{ yum_repo_dir }}/containerd.repo"
|
|
when: ansible_distribution in ["CentOS","RedHat"]
|