summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/openshift_logging.yml
blob: 69f50fbcd9f7e8aa0eea04b8018271db9b3cd1a8 (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
30
31
32
33
34
35
---
- name: Logging Install Checkpoint Start
  hosts: localhost
  connection: local
  gather_facts: false
  tasks:
  - name: Set Logging install 'In Progress'
    set_stats:
      data:
        installer_phase_logging: "In Progress"
      aggregate: false

- name: OpenShift Aggregated Logging
  hosts: oo_first_master
  roles:
  - openshift_logging

- name: Update Master configs
  hosts: oo_masters:!oo_first_master
  tasks:
  - block:
    - include_role:
        name: openshift_logging
        tasks_from: update_master_config

- name: Logging Install Checkpoint End
  hosts: localhost
  connection: local
  gather_facts: false
  tasks:
  - name: Set Logging install 'Complete'
    set_stats:
      data:
        installer_phase_logging: "Complete"
      aggregate: false