mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-24 22:46:06 -03:30
Add crun support (#6864)
Signed-off-by: Victor Morales <v.morales@samsung.com>
This commit is contained in:
@@ -54,6 +54,13 @@ kata_runtimes:
|
||||
type: oci
|
||||
root: /run/kata-containers
|
||||
|
||||
# crun is a fast and low-memory footprint OCI Container Runtime fully written in C.
|
||||
crun_runtime:
|
||||
name: crun
|
||||
path: /usr/bin/crun
|
||||
type: oci
|
||||
root: /run/crun
|
||||
|
||||
# When this is true, CRI-O package repositories are added. Set this to false when using an
|
||||
# environment with preconfigured CRI-O package repositories.
|
||||
crio_add_repos: true
|
||||
|
||||
@@ -45,12 +45,18 @@
|
||||
|
||||
- import_tasks: "crictl.yml"
|
||||
|
||||
- name: Build a list of crio runtimes
|
||||
- name: Build a list of crio runtimes with Katacontainers runtimes
|
||||
set_fact:
|
||||
crio_runtimes: "{{ crio_runtimes + kata_runtimes }}"
|
||||
when:
|
||||
- kata_containers_enabled
|
||||
|
||||
- name: Build a list of crio runtimes with crun runtime
|
||||
set_fact:
|
||||
crio_runtimes: "{{ crio_runtimes + [crun_runtime] }}"
|
||||
when:
|
||||
- crun_enabled
|
||||
|
||||
- name: Make sure needed folders exist in the system
|
||||
with_items:
|
||||
- /etc/crio
|
||||
|
||||
5
roles/container-engine/crun/defaults/main.yml
Normal file
5
roles/container-engine/crun/defaults/main.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
|
||||
crun_version: 0.15
|
||||
crun_release_url: https://github.com/containers/crun/releases/download/{{ crun_version }}/crun-{{ crun_version }}-linux-{{ host_architecture }}
|
||||
crun_bin_dir: /usr/bin/
|
||||
19
roles/container-engine/crun/tasks/main.yml
Normal file
19
roles/container-engine/crun/tasks/main.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
|
||||
- name: Create binary destination folder
|
||||
file:
|
||||
mode: '0755'
|
||||
state: directory
|
||||
path: "{{ crun_bin_dir }}"
|
||||
|
||||
- name: Check if binary exists
|
||||
stat:
|
||||
path: "{{ crun_bin_dir }}/crun"
|
||||
register: crun_stat
|
||||
|
||||
- name: Download binary
|
||||
get_url:
|
||||
url: "{{ crun_release_url }}"
|
||||
dest: "{{ crun_bin_dir }}/crun"
|
||||
mode: '0755'
|
||||
when: not crun_stat.stat.exists
|
||||
@@ -7,6 +7,13 @@ dependencies:
|
||||
- container-engine
|
||||
- kata-containers
|
||||
|
||||
- role: container-engine/crun
|
||||
when:
|
||||
- crun_enabled
|
||||
tags:
|
||||
- container-engine
|
||||
- crun
|
||||
|
||||
- role: container-engine/cri-o
|
||||
when:
|
||||
- container_manager == 'crio'
|
||||
|
||||
Reference in New Issue
Block a user