2018-08-09 17:53:11 +00:00
|
|
|
---
|
2020-03-17 10:12:21 +00:00
|
|
|
|
2020-03-17 21:31:27 +00:00
|
|
|
- name: check if fedora coreos
|
2020-03-17 10:12:21 +00:00
|
|
|
stat:
|
|
|
|
path: /run/ostree-booted
|
|
|
|
register: ostree
|
|
|
|
|
|
|
|
- name: set is_ostree
|
|
|
|
set_fact:
|
|
|
|
is_ostree: "{{ ostree.stat.exists }}"
|
|
|
|
|
|
|
|
|
2018-08-28 11:48:37 +00:00
|
|
|
- name: gather os specific variables
|
|
|
|
include_vars: "{{ item }}"
|
|
|
|
with_first_found:
|
|
|
|
- files:
|
|
|
|
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_version|lower|replace('/', '_') }}.yml"
|
|
|
|
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_release }}.yml"
|
|
|
|
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_major_version|lower|replace('/', '_') }}.yml"
|
|
|
|
- "{{ ansible_distribution|lower }}.yml"
|
|
|
|
- "{{ ansible_os_family|lower }}-{{ ansible_architecture }}.yml"
|
|
|
|
- "{{ ansible_os_family|lower }}.yml"
|
|
|
|
- defaults.yml
|
|
|
|
paths:
|
|
|
|
- ../vars
|
|
|
|
skip: true
|
|
|
|
tags:
|
|
|
|
- facts
|
|
|
|
|
2018-08-09 17:53:11 +00:00
|
|
|
- name: Add OpenShift Origin repository
|
|
|
|
yum_repository:
|
|
|
|
name: origin
|
|
|
|
description: OpenShift Origin Repo
|
|
|
|
baseurl: "{{ crio_rhel_repo_base_url }}"
|
|
|
|
gpgcheck: no
|
2020-03-17 10:12:21 +00:00
|
|
|
when: ansible_distribution in ["CentOS","RedHat","OracleLinux"] and not is_ostree
|
2018-08-09 17:53:11 +00:00
|
|
|
|
2019-06-29 21:09:20 +00:00
|
|
|
- name: Add CRI-O PPA
|
|
|
|
apt_repository:
|
|
|
|
repo: ppa:projectatomic/ppa
|
|
|
|
state: present
|
|
|
|
when: ansible_distribution in ["Ubuntu"]
|
|
|
|
|
2019-12-19 12:37:57 +00:00
|
|
|
- include_tasks: "crictl.yml"
|
2019-08-22 10:54:31 +00:00
|
|
|
|
|
|
|
- name: Install crictl
|
|
|
|
unarchive:
|
|
|
|
src: "{{ local_release_dir }}/crictl-{{ crictl_version }}-linux-{{ image_arch }}.tar.gz"
|
|
|
|
dest: "/usr/local/bin"
|
|
|
|
mode: 0755
|
|
|
|
remote_src: yes
|
|
|
|
|
2018-12-18 09:39:25 +00:00
|
|
|
- name: Make sure needed folders exist in the system
|
|
|
|
with_items:
|
|
|
|
- /etc/crio
|
|
|
|
- /etc/containers
|
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
|
|
|
|
2018-08-28 11:48:37 +00:00
|
|
|
- name: Install cri-o packages
|
2018-08-09 17:53:11 +00:00
|
|
|
package:
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: present
|
2020-03-17 10:12:21 +00:00
|
|
|
when: not is_ostree
|
2018-08-28 11:48:37 +00:00
|
|
|
with_items: "{{ crio_packages }}"
|
2018-08-09 17:53:11 +00:00
|
|
|
|
2020-03-17 10:12:21 +00:00
|
|
|
- name: Check if already installed
|
|
|
|
stat:
|
|
|
|
path: "/bin/crio"
|
|
|
|
register: need_bootstrap_crio
|
|
|
|
when: is_ostree
|
|
|
|
|
2020-04-11 06:51:47 +00:00
|
|
|
- name: Enable modular repos for crio
|
|
|
|
ini_file:
|
|
|
|
path: "/etc/yum.repos.d/{{ item }}.repo"
|
|
|
|
section: "{{ item }}"
|
|
|
|
option: enabled
|
|
|
|
value: 1
|
|
|
|
become: true
|
|
|
|
when:
|
|
|
|
- is_ostree
|
|
|
|
- not need_bootstrap_crio.stat.exists
|
|
|
|
loop:
|
|
|
|
- "fedora-updates-modular"
|
|
|
|
- "fedora-modular"
|
|
|
|
|
2020-03-17 10:12:21 +00:00
|
|
|
- name: Install cri-o packages with osttree
|
2020-04-11 06:51:47 +00:00
|
|
|
command: "rpm-ostree install {{ crio_packages|join(' ') }}"
|
|
|
|
when:
|
|
|
|
- is_ostree
|
|
|
|
- not need_bootstrap_crio.stat.exists
|
2020-03-17 10:12:21 +00:00
|
|
|
become: true
|
|
|
|
|
|
|
|
- name: Reboot immediately for updated ostree
|
|
|
|
reboot:
|
|
|
|
become: true
|
2020-04-11 06:51:47 +00:00
|
|
|
when:
|
|
|
|
- is_ostree
|
|
|
|
- not need_bootstrap_crio.stat.exists
|
2020-03-17 10:12:21 +00:00
|
|
|
|
2018-08-09 17:53:11 +00:00
|
|
|
- name: Install cri-o config
|
|
|
|
template:
|
|
|
|
src: crio.conf.j2
|
|
|
|
dest: /etc/crio/crio.conf
|
|
|
|
|
|
|
|
- name: Copy mounts.conf
|
2018-08-28 11:48:37 +00:00
|
|
|
copy:
|
|
|
|
src: mounts.conf
|
|
|
|
dest: /etc/containers/mounts.conf
|
|
|
|
when:
|
|
|
|
- ansible_os_family == 'RedHat'
|
2018-08-09 17:53:11 +00:00
|
|
|
|
|
|
|
- name: Create directory for oci hooks
|
|
|
|
file:
|
|
|
|
path: /etc/containers/oci/hooks.d
|
|
|
|
state: directory
|
|
|
|
owner: root
|
|
|
|
mode: 0755
|
|
|
|
|
2019-12-19 12:37:57 +00:00
|
|
|
- name: Reload systemd daemon
|
|
|
|
systemd:
|
|
|
|
daemon_reload: yes
|
|
|
|
|
2018-08-09 17:53:11 +00:00
|
|
|
- name: Install cri-o service
|
|
|
|
service:
|
2018-08-28 11:48:37 +00:00
|
|
|
name: "{{ crio_service }}"
|
2018-08-09 17:53:11 +00:00
|
|
|
enabled: yes
|
|
|
|
state: restarted
|