ea8e2fc651
* Containerd: download containerd from upstream instead of using distro specific packages split runc download to separate role make bootstrap-os role deploy container-selinux and seccomp libraries clean up package manager provided containerd move variables to docker role that are no longer common with containerd * Containerd: make molecule testing more relevant * replace ubuntu18 with ubuntu20 * add centos8 and debian11 to molecule tests * run kubernetes/preinstall role to ensure relevancy of test including dependency packages * CI: adjust test scenarios for downloaded containerd
48 lines
848 B
YAML
48 lines
848 B
YAML
---
|
|
driver:
|
|
name: vagrant
|
|
provider:
|
|
name: libvirt
|
|
lint: |
|
|
set -e
|
|
yamllint -c ../../../.yamllint .
|
|
platforms:
|
|
- name: ubuntu20
|
|
box: generic/ubuntu2004
|
|
cpus: 1
|
|
memory: 1024
|
|
groups:
|
|
- kube_control_plane
|
|
- kube_node
|
|
- k8s_cluster
|
|
- name: debian11
|
|
box: generic/debian11
|
|
cpus: 1
|
|
memory: 1024
|
|
groups:
|
|
- kube_control_plane
|
|
- kube_node
|
|
- k8s_cluster
|
|
- name: centos8
|
|
box: generic/centos8
|
|
cpus: 1
|
|
memory: 1024
|
|
groups:
|
|
- kube_control_plane
|
|
- kube_node
|
|
- k8s_cluster
|
|
provisioner:
|
|
name: ansible
|
|
env:
|
|
ANSIBLE_ROLES_PATH: ../../../../
|
|
config_options:
|
|
defaults:
|
|
callback_whitelist: profile_tasks
|
|
lint:
|
|
name: ansible-lint
|
|
options:
|
|
c: ../../../.ansible-lint
|
|
verifier:
|
|
name: testinfra
|
|
lint:
|
|
name: flake8
|