blob: 7a49adcf04a866f70eb83fed54965dc813a1a6b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
---
- import_playbook: build_container_groups.yml
- hosts: oo_nodes_to_config:oo_hosts_containerized_managed_true
roles:
- role: container_runtime
tasks:
- import_role:
name: container_runtime
tasks_from: package_docker.yml
when:
- not openshift_docker_use_system_container | bool
- not openshift_use_crio_only | bool
- import_role:
name: container_runtime
tasks_from: systemcontainer_docker.yml
when:
- openshift_docker_use_system_container | bool
- not openshift_use_crio_only | bool
- import_role:
name: container_runtime
tasks_from: systemcontainer_crio.yml
when:
- openshift_use_crio | bool
- openshift_docker_is_node_or_master | bool
|