diff options
Diffstat (limited to 'playbooks/common')
| -rw-r--r-- | playbooks/common/openshift-cluster/create_services.yml | 8 | ||||
| -rw-r--r-- | playbooks/common/openshift-master/config.yml | 34 | 
2 files changed, 32 insertions, 10 deletions
| diff --git a/playbooks/common/openshift-cluster/create_services.yml b/playbooks/common/openshift-cluster/create_services.yml deleted file mode 100644 index e70709d19..000000000 --- a/playbooks/common/openshift-cluster/create_services.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -- name: Deploy OpenShift Services -  hosts: "{{ g_svc_master }}" -  connection: ssh -  gather_facts: yes -  roles: -  - openshift_registry -  - openshift_router diff --git a/playbooks/common/openshift-master/config.yml b/playbooks/common/openshift-master/config.yml index 64cf7a65b..0a3fe90e1 100644 --- a/playbooks/common/openshift-master/config.yml +++ b/playbooks/common/openshift-master/config.yml @@ -2,6 +2,21 @@  - name: Set master facts and determine if external etcd certs need to be generated    hosts: oo_masters_to_config    pre_tasks: +  - name: Check for RPM generated config marker file .config_managed +    stat: +      path: /etc/origin/.config_managed +    register: rpmgenerated_config + +  - name: Remove RPM generated config files if present +    file: +      path: "/etc/origin/{{ item }}" +      state: absent +    when: rpmgenerated_config.stat.exists == true and deployment_type in ['openshift-enterprise', 'atomic-enterprise'] +    with_items: +    - master +    - node +    - .config_managed +    - set_fact:        openshift_master_etcd_port: "{{ (etcd_client_port | default('2379')) if (groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config) else none }}"        openshift_master_etcd_hosts: "{{ hostvars @@ -216,11 +231,19 @@    roles:    - role: openshift_master_cluster      when: openshift_master_ha | bool -  - role: openshift_examples -    when: deployment_type in ['enterprise','openshift-enterprise','origin'] +  - openshift_examples    - role: openshift_cluster_metrics      when: openshift.common.use_cluster_metrics | bool +- name: Enable cockpit +  hosts: oo_first_master +  vars: +    cockpit_plugins: "{{ osm_cockpit_plugins | default(['cockpit-kubernetes']) }}" +  roles: +  - role: cockpit +    when: ( deployment_type in ['atomic-enterprise','openshift-enterprise'] ) and +      (osm_use_cockpit | bool or osm_use_cockpit is undefined ) +  # Additional instance config for online deployments  - name: Additional instance config    hosts: oo_masters_deployment_type_online @@ -245,3 +268,10 @@    roles:    - openshift_serviceaccounts + +- name: Create services +  hosts: oo_first_master +  roles: +  - role: openshift_router +    when: openshift.master.infra_nodes is defined +  #- role: openshift_registry | 
