blob: 1d79db35304c28f9fe1da9715828e2c6b16abca7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
- include: ../openshift-cluster/evaluate_groups.yml
- name: Gather facts
hosts: oo_etcd_to_config:oo_masters_to_config:oo_nodes_to_config
roles:
- openshift_facts
- name: Configure docker hosts
hosts: oo_nodes_to_config
vars:
docker_additional_registries: "{{ lookup('oo_option', 'docker_additional_registries') | oo_split }}"
docker_insecure_registries: "{{ lookup('oo_option', 'docker_insecure_registries') | oo_split }}"
docker_blocked_registries: "{{ lookup('oo_option', 'docker_blocked_registries') | oo_split }}"
roles:
- openshift_facts
- openshift_docker
- include: ../openshift-node/config.yml
|