diff options
Diffstat (limited to 'playbooks')
| -rw-r--r-- | playbooks/byo/openshift-master/scaleup.yml | 2 | ||||
| -rw-r--r-- | playbooks/byo/openshift-node/scaleup.yml | 2 | ||||
| -rw-r--r-- | playbooks/common/openshift-cluster/config.yml | 4 | ||||
| -rw-r--r-- | playbooks/common/openshift-cluster/initialize_firewall.yml | 7 | ||||
| -rw-r--r-- | playbooks/common/openshift-etcd/config.yml | 1 | ||||
| -rw-r--r-- | playbooks/common/openshift-etcd/scaleup.yml | 8 | ||||
| -rw-r--r-- | playbooks/common/openshift-loadbalancer/config.yml | 1 | ||||
| -rw-r--r-- | playbooks/common/openshift-master/config.yml | 1 | ||||
| -rw-r--r-- | playbooks/common/openshift-master/scaleup.yml | 17 | ||||
| -rw-r--r-- | playbooks/common/openshift-node/config.yml | 2 | ||||
| -rw-r--r-- | playbooks/common/openshift-node/scaleup.yml | 28 | 
11 files changed, 15 insertions, 58 deletions
| diff --git a/playbooks/byo/openshift-master/scaleup.yml b/playbooks/byo/openshift-master/scaleup.yml index 64811e80d..e3ef704e5 100644 --- a/playbooks/byo/openshift-master/scaleup.yml +++ b/playbooks/byo/openshift-master/scaleup.yml @@ -15,6 +15,8 @@      when:      - (g_new_master_hosts | default([]) | length == 0) or (g_new_node_hosts | default([]) | length == 0) +- include: ../../common/openshift-cluster/std_include.yml +  - include: ../../common/openshift-master/scaleup.yml    vars:      openshift_cluster_id: "{{ cluster_id | default('default') }}" diff --git a/playbooks/byo/openshift-node/scaleup.yml b/playbooks/byo/openshift-node/scaleup.yml index fda89b1ea..0225623c6 100644 --- a/playbooks/byo/openshift-node/scaleup.yml +++ b/playbooks/byo/openshift-node/scaleup.yml @@ -14,6 +14,8 @@      when:      - g_new_node_hosts | default([]) | length == 0 +- include: ../../common/openshift-cluster/std_include.yml +  - include: ../../common/openshift-node/scaleup.yml    vars:      openshift_cluster_id: "{{ cluster_id | default('default') }}" diff --git a/playbooks/common/openshift-cluster/config.yml b/playbooks/common/openshift-cluster/config.yml index e1df71112..26b27ba39 100644 --- a/playbooks/common/openshift-cluster/config.yml +++ b/playbooks/common/openshift-cluster/config.yml @@ -18,10 +18,6 @@        - docker_image_availability        - docker_storage -- include: initialize_firewall.yml -  tags: -  - always -  - hosts: localhost    tasks:    - fail: diff --git a/playbooks/common/openshift-cluster/initialize_firewall.yml b/playbooks/common/openshift-cluster/initialize_firewall.yml deleted file mode 100644 index f0374fbc7..000000000 --- a/playbooks/common/openshift-cluster/initialize_firewall.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -- name: Initialize host firewall -  hosts: oo_all_hosts -  tasks: -  - name: Install and configure the proper firewall settings -    include_role: -      name: os_firewall diff --git a/playbooks/common/openshift-etcd/config.yml b/playbooks/common/openshift-etcd/config.yml index 2cb6197d1..f2b85eea1 100644 --- a/playbooks/common/openshift-etcd/config.yml +++ b/playbooks/common/openshift-etcd/config.yml @@ -3,6 +3,7 @@    hosts: oo_etcd_to_config    any_errors_fatal: true    roles: +  - role: os_firewall    - role: openshift_etcd      etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"      etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}" diff --git a/playbooks/common/openshift-etcd/scaleup.yml b/playbooks/common/openshift-etcd/scaleup.yml index 52b90daca..5f8bb1c7a 100644 --- a/playbooks/common/openshift-etcd/scaleup.yml +++ b/playbooks/common/openshift-etcd/scaleup.yml @@ -28,13 +28,15 @@      delay: 10      until: etcd_add_check.rc == 0    roles: +  - role: os_firewall +    when: etcd_add_check.rc == 0    - role: openshift_etcd      when: etcd_add_check.rc == 0      etcd_peers: "{{ groups.oo_etcd_to_config | union(groups.oo_new_etcd_to_config)| default([], true) }}"      etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"      etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"      etcd_initial_cluster_state: "existing" -    initial_etcd_cluster: "{{ etcd_add_check.stdout_lines[3] | regex_replace('ETCD_INITIAL_CLUSTER=','') }}" +    initial_etcd_cluster: "{{ etcd_add_check.stdout_lines[3] | regex_replace('ETCD_INITIAL_CLUSTER=','') | regex_replace('\"','') }}"      etcd_ca_setup: False      r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"    - role: nickhammond.logrotate @@ -47,5 +49,7 @@                         --ca-file {{ etcd_peer_ca_file }}                         -C {{ etcd_peer_url_scheme }}://{{ hostvars[etcd_ca_host].etcd_hostname }}:{{ etcd_client_port }}                         cluster-health -    retries: 1 +    register: scaleup_health +    retries: 3      delay: 30 +    until: scaleup_health.rc == 0 diff --git a/playbooks/common/openshift-loadbalancer/config.yml b/playbooks/common/openshift-loadbalancer/config.yml index 2dacc1218..09ed81a83 100644 --- a/playbooks/common/openshift-loadbalancer/config.yml +++ b/playbooks/common/openshift-loadbalancer/config.yml @@ -14,4 +14,5 @@                                            + openshift_loadbalancer_additional_backends | default([]) }}"      openshift_image_tag: "{{ hostvars[groups.oo_first_master.0].openshift_image_tag }}"    roles: +  - role: os_firewall    - role: openshift_loadbalancer diff --git a/playbooks/common/openshift-master/config.yml b/playbooks/common/openshift-master/config.yml index b30450def..cd25dd211 100644 --- a/playbooks/common/openshift-master/config.yml +++ b/playbooks/common/openshift-master/config.yml @@ -180,6 +180,7 @@                                                  | oo_collect('openshift.common.ip') | default([]) | join(',')                                                  }}"    roles: +  - role: os_firewall    - role: openshift_master      openshift_ca_host: "{{ groups.oo_first_master.0 }}"      openshift_master_etcd_hosts: "{{ hostvars diff --git a/playbooks/common/openshift-master/scaleup.yml b/playbooks/common/openshift-master/scaleup.yml index bc61ee9bb..6ad4cde65 100644 --- a/playbooks/common/openshift-master/scaleup.yml +++ b/playbooks/common/openshift-master/scaleup.yml @@ -1,11 +1,4 @@  --- -- 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: Update master count    hosts: oo_masters:!oo_masters_to_config    serial: 1 @@ -50,16 +43,6 @@      delay: 1      changed_when: false -- name: Configure docker hosts -  hosts: oo_masters_to_config: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 -  - name: Disable excluders    hosts: oo_masters_to_config    tags: diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml index ef7d54f9f..04c811c22 100644 --- a/playbooks/common/openshift-node/config.yml +++ b/playbooks/common/openshift-node/config.yml @@ -32,6 +32,7 @@                                                  }}"    roles: +  - role: os_firewall    - role: openshift_node      openshift_ca_host: "{{ groups.oo_first_master.0 }}" @@ -47,6 +48,7 @@                                                  | oo_collect('openshift.common.hostname') | default([]) | join (',')                                                  }}"    roles: +  - role: os_firewall    - role: openshift_node      openshift_ca_host: "{{ groups.oo_first_master.0 }}" diff --git a/playbooks/common/openshift-node/scaleup.yml b/playbooks/common/openshift-node/scaleup.yml index 40da8990d..b1bbbb14c 100644 --- a/playbooks/common/openshift-node/scaleup.yml +++ b/playbooks/common/openshift-node/scaleup.yml @@ -1,32 +1,4 @@  --- -- 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: Gather and set facts for first master -  hosts: oo_first_master -  vars: -    openshift_master_count: "{{ groups.oo_masters | length }}" -  pre_tasks: -  - set_fact: -      openshift_master_default_subdomain: "{{ lookup('oo_option', 'openshift_master_default_subdomain') | default(None, true) }}" -    when: openshift_master_default_subdomain is not defined -  roles: -  - openshift_master_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 -  - name: Disable excluders    hosts: oo_nodes_to_config    tags: | 
