7516fe142f
* Ansible: move to Ansible 3.4.0 which uses ansible-base 2.10.10 * Docs: add a note about ansible upgrade post 2.9.x * CI: ensure ansible is removed before ansible 3.x is installed to avoid pip failures * Ansible: use newer ansible-lint * Fix ansible-lint 5.0.11 found issues * syntax issues * risky-file-permissions * var-naming * role-name * molecule tests * Mitogen: use 0.3.0rc1 which adds support for ansible 2.10+ * Pin ansible-base to 2.10.11 to get package fix on RHEL8
45 lines
916 B
YAML
45 lines
916 B
YAML
# noqa role-name - this is a meta role that doesn't need a name
|
|
---
|
|
dependencies:
|
|
- role: container-engine/kata-containers
|
|
when:
|
|
- kata_containers_enabled
|
|
tags:
|
|
- container-engine
|
|
- kata-containers
|
|
|
|
- role: container-engine/gvisor
|
|
when:
|
|
- gvisor_enabled
|
|
- container_manager in ['docker', 'containerd']
|
|
tags:
|
|
- container-engine
|
|
- gvisor
|
|
|
|
- role: container-engine/crun
|
|
when:
|
|
- crun_enabled
|
|
tags:
|
|
- container-engine
|
|
- crun
|
|
|
|
- role: container-engine/cri-o
|
|
when:
|
|
- container_manager == 'crio'
|
|
tags:
|
|
- container-engine
|
|
- crio
|
|
|
|
- role: container-engine/containerd
|
|
when:
|
|
- container_manager == 'containerd'
|
|
tags:
|
|
- container-engine
|
|
- containerd
|
|
|
|
- role: container-engine/docker
|
|
when:
|
|
- container_manager == 'docker'
|
|
tags:
|
|
- container-engine
|
|
- docker
|