summaryrefslogtreecommitdiffstats
path: root/playbooks/openshift-master/private/additional_config.yml
blob: ca514ed2687430e1d9a78ced14c5add77541fb33 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
- name: Master Additional Install Checkpoint Start
  hosts: all
  gather_facts: false
  tasks:
  - name: Set Master Additional install 'In Progress'
    run_once: true
    set_stats:
      data:
        installer_phase_master_additional:
          status: "In Progress"
          start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"

- name: Additional master configuration
  hosts: oo_first_master
  vars:
    cockpit_plugins: "{{ osm_cockpit_plugins | default(['cockpit-kubernetes']) }}"
    etcd_urls: "{{ openshift.master.etcd_urls }}"
    omc_cluster_hosts: "{{ groups.oo_masters | join(' ')}}"
  roles:
  - role: openshift_project_request_template
    when: openshift_project_request_template_manage
  - role: openshift_examples
    when: openshift_install_examples | default(true) | bool
    registry_url: "{{ openshift.master.registry_url }}"
  - role: openshift_hosted_templates
    registry_url: "{{ openshift.master.registry_url }}"
  - role: openshift_manageiq
    when: openshift_use_manageiq | default(true) | bool
  - role: cockpit
    when:
    - not openshift_is_atomic | bool
    - openshift_deployment_type == 'openshift-enterprise'
    - osm_use_cockpit is undefined or osm_use_cockpit | bool
    - openshift.common.deployment_subtype != 'registry'
  - role: flannel_register
    when: openshift_use_flannel | default(false) | bool

- name: Master Additional Install Checkpoint End
  hosts: all
  gather_facts: false
  tasks:
  - name: Set Master Additional install 'Complete'
    run_once: true
    set_stats:
      data:
        installer_phase_master_additional:
          status: "Complete"
          end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"