blob: 817a8bf308bbead9f735bfccc3390bc8203d094e (
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
26
27
28
29
|
---
# l_scale_up_hosts may be passed in via prerequisites.yml during scaleup plays.
- import_playbook: build_container_groups.yml
- hosts: "{{ l_scale_up_hosts | default(l_default_container_runtime_hosts) }}"
vars:
l_default_container_runtime_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
|