|
@@ -19,11 +19,31 @@
|
|
|
hosts: oo_etcd_to_config
|
|
|
any_errors_fatal: true
|
|
|
tasks:
|
|
|
+ - fail:
|
|
|
+ msg: >
|
|
|
+ etcd stand-alone hosts on atomic is no longer supported. Please
|
|
|
+ co-locate your etcd hosts with masters.
|
|
|
+ when:
|
|
|
+ - openshift_is_atomic | bool
|
|
|
+ - not inventory_hostname in groups['oo_masters']
|
|
|
+
|
|
|
+ # Setup etcd as a static pod if collocated with a master
|
|
|
+ - import_role:
|
|
|
+ name: etcd
|
|
|
+ tasks_from: static.yml
|
|
|
+ vars:
|
|
|
+ etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"
|
|
|
+ etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"
|
|
|
+ when: inventory_hostname in groups['oo_masters']
|
|
|
+
|
|
|
- import_role:
|
|
|
name: etcd
|
|
|
+ tasks_from: rpm.yml
|
|
|
+ when: not inventory_hostname in groups['oo_masters']
|
|
|
vars:
|
|
|
etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"
|
|
|
etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"
|
|
|
+
|
|
|
- import_role:
|
|
|
name: nickhammond.logrotate
|
|
|
|