ee23b947aa
* fix flake8 errors in Kubespray CI - tox-inventory-builder * Invalidate CRI-O kubic repo's cache Signed-off-by: Victor Morales <v.morales@samsung.com> * add support to configure pkg install retries and use in CI job tf-ovh_ubuntu18-calico (due to it failing often) * Switch Calico, Cilium and MetalLB image repos to Quay.io Co-authored-by: Victor Morales <v.morales@samsung.com> Co-authored-by: Barry Melbourne <9964974+bmelbourne@users.noreply.github.com>
74 lines
2.9 KiB
YAML
74 lines
2.9 KiB
YAML
---
|
|
|
|
- name: CRI-O kubic repo name for debian os family
|
|
set_fact:
|
|
crio_kubic_debian_repo_name: "{{ ((ansible_distribution == 'Ubuntu') | ternary('x','')) ~ ansible_distribution ~ '_' ~ ansible_distribution_version }}"
|
|
when: ansible_os_family == "Debian"
|
|
|
|
- name: Add CRI-O kubic apt repo key
|
|
apt_key:
|
|
url: "https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable/{{ crio_kubic_debian_repo_name }}/Release.key"
|
|
state: present
|
|
when: crio_kubic_debian_repo_name is defined
|
|
register: apt_key_download
|
|
until: apt_key_download is succeeded
|
|
retries: 4
|
|
delay: "{{ retry_stagger | d(3) }}"
|
|
|
|
- name: Add CRI-O kubic apt repo
|
|
apt_repository:
|
|
repo: "deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/{{ crio_kubic_debian_repo_name }}/ /"
|
|
state: present
|
|
filename: devel-kubic-libcontainers-stable
|
|
when: crio_kubic_debian_repo_name is defined
|
|
|
|
- name: Add CRI-O kubic cri-o apt repo
|
|
apt_repository:
|
|
repo: "deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/{{ crio_version }}/{{ crio_kubic_debian_repo_name }}/ /"
|
|
state: present
|
|
filename: devel-kubic-libcontainers-stable-cri-o
|
|
when: crio_kubic_debian_repo_name is defined
|
|
|
|
- name: Add CRI-O kubic yum repo
|
|
yum_repository:
|
|
name: devel_kubic_libcontainers_stable
|
|
description: Stable Releases of Upstream github.com/containers packages (CentOS_$releasever)
|
|
baseurl: http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/CentOS_$releasever/
|
|
gpgcheck: yes
|
|
gpgkey: http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/CentOS_$releasever/repodata/repomd.xml.key
|
|
keepcache: false
|
|
when: ansible_distribution in ["CentOS"]
|
|
|
|
- name: Add CRI-O kubic yum repo
|
|
yum_repository:
|
|
name: "devel_kubic_libcontainers_stable_cri-o_{{ crio_version }}"
|
|
description: "CRI-O {{ crio_version }} (CentOS_$releasever)"
|
|
baseurl: "http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/{{ crio_version }}/CentOS_$releasever/"
|
|
gpgcheck: yes
|
|
gpgkey: "http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/{{ crio_version }}/CentOS_$releasever/repodata/repomd.xml.key"
|
|
when: ansible_distribution in ["CentOS"]
|
|
|
|
- name: Enable modular repos for CRI-O
|
|
ini_file:
|
|
path: "/etc/yum.repos.d/{{ item.repo }}.repo"
|
|
section: "{{ item.section }}"
|
|
option: enabled
|
|
value: 1
|
|
become: true
|
|
when: is_ostree
|
|
loop:
|
|
- repo: "fedora-updates-modular"
|
|
section: "updates-modular"
|
|
- repo: "fedora-modular"
|
|
section: "fedora-modular"
|
|
|
|
- name: Enable CRI-O module
|
|
command: "dnf -y module enable cri-o:{{ crio_version }}"
|
|
args:
|
|
warn: False
|
|
register: crio_dnf_result
|
|
changed_when: "'Enabling' in crio_dnf_result.stdout"
|
|
become: true
|
|
when:
|
|
- ansible_distribution in ["Fedora"]
|
|
- not is_ostree
|