main.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---
  2. # For 1.4/3.4 we want to upgrade everyone to etcd-3.0. etcd docs say to
  3. # upgrade from 2.0.x to 2.1.x to 2.2.x to 2.3.x to 3.0.x. While this is a tedius
  4. # task for RHEL and CENTOS it's simply not possible in Fedora unless you've
  5. # mirrored packages on your own because only the GA and latest versions are
  6. # available in the repos. So for Fedora we'll simply skip this, sorry.
  7. - include: ../../evaluate_groups.yml
  8. tags:
  9. - always
  10. # We use two groups one for hosts we're upgrading which doesn't include embedded etcd
  11. # The other for backing up which includes the embedded etcd host, there's no need to
  12. # upgrade embedded etcd that just happens when the master is updated.
  13. - name: Evaluate additional groups for etcd
  14. hosts: localhost
  15. connection: local
  16. become: no
  17. tasks:
  18. - name: Evaluate etcd_hosts_to_upgrade
  19. add_host:
  20. name: "{{ item }}"
  21. groups: etcd_hosts_to_upgrade
  22. with_items: "{{ groups.oo_etcd_to_config if groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config | length > 0 else [] }}"
  23. - name: Evaluate etcd_hosts_to_backup
  24. add_host:
  25. name: "{{ item }}"
  26. groups: etcd_hosts_to_backup
  27. with_items: "{{ groups.oo_etcd_to_config if groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config | length > 0 else groups.oo_first_master }}"
  28. - name: Backup etcd before upgrading anything
  29. include: backup.yml
  30. vars:
  31. backup_tag: "pre-upgrade-"
  32. when: openshift_etcd_backup | default(true) | bool
  33. - name: Drop etcdctl profiles
  34. hosts: etcd_hosts_to_upgrade
  35. tasks:
  36. - include: roles/etcd/tasks/etcdctl.yml
  37. - name: Perform etcd upgrade
  38. include: ./upgrade.yml
  39. when: openshift_etcd_upgrade | default(true) | bool