blob: 0e375754697ad7ea971cfb77c5fc61b648715b9d (
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
|
---
- name: WIP
hosts: localhost
become: no
connection: local
gather_facts: no
vars_files:
- vars.yml
tasks:
- name: Evaluate oo_masters_for_deploy
add_host:
name: "{{ item }}"
groups: oo_masters_for_deploy
ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user | default(ansible_ssh_user, true) }}"
ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
with_items: "{{ g_master_hosts | default([]) }}"
- name: Deploy OpenShift Services
hosts: oo_masters_for_deploy
connection: ssh
gather_facts: yes
user: root
vars_files:
- vars.yml
roles:
- openshift_registry
- openshift_router
|