diff options
author | Andrew Butcher <abutcher@redhat.com> | 2018-01-29 15:29:33 -0500 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2018-02-01 16:57:43 -0500 |
commit | 76bbd06963b474237925b97893c2403b3feba496 (patch) | |
tree | 35b2409dbc6753270a0f595f4b2c79fbbfe3ea8f /playbooks/openshift-etcd/private/scaleup.yml | |
parent | 6ee7a3baa0d46c3ab29050b61fea92ffb350ee35 (diff) | |
download | openshift-76bbd06963b474237925b97893c2403b3feba496.tar.gz openshift-76bbd06963b474237925b97893c2403b3feba496.tar.bz2 openshift-76bbd06963b474237925b97893c2403b3feba496.tar.xz openshift-76bbd06963b474237925b97893c2403b3feba496.zip |
Determine which etcd host is the etcd_ca_host rather than assume it is the first host in the etcd host group.
Diffstat (limited to 'playbooks/openshift-etcd/private/scaleup.yml')
-rw-r--r-- | playbooks/openshift-etcd/private/scaleup.yml | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/playbooks/openshift-etcd/private/scaleup.yml b/playbooks/openshift-etcd/private/scaleup.yml index 8a9811a25..162a5eba7 100644 --- a/playbooks/openshift-etcd/private/scaleup.yml +++ b/playbooks/openshift-etcd/private/scaleup.yml @@ -12,8 +12,6 @@ hosts: oo_new_etcd_to_config serial: 1 any_errors_fatal: true - vars: - etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}" pre_tasks: - name: Add new etcd members to cluster command: > @@ -42,7 +40,6 @@ - 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" etcd_initial_cluster: "{{ etcd_add_check.stdout_lines[3] | regex_replace('ETCD_INITIAL_CLUSTER=','') | regex_replace('\"','') }}" @@ -66,8 +63,6 @@ hosts: oo_masters_to_config serial: 1 vars: - etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}" - openshift_ca_host: "{{ groups.oo_first_master.0 }}" openshift_master_etcd_hosts: "{{ hostvars | lib_utils_oo_select_keys(groups['oo_etcd_to_config'] | union(groups['oo_new_etcd_to_config'] | default([]) )) | lib_utils_oo_collect('openshift.common.hostname') |