upgrade_main.yml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. ---
  2. # Prior to 3.6, openshift-ansible created etcd serving certificates
  3. # without a SubjectAlternativeName entry for the system hostname. The
  4. # SAN list in Go 1.8 is now (correctly) authoritative and since
  5. # openshift-ansible configures masters to talk to etcd hostnames
  6. # rather than IP addresses, we must correct etcd certificates.
  7. #
  8. # This play examines the etcd serving certificate SANs on each etcd
  9. # host and records whether or not the system hostname is missing.
  10. - name: Examine etcd serving certificate SAN
  11. hosts: oo_etcd_to_config
  12. tasks:
  13. - slurp:
  14. src: /etc/etcd/server.crt
  15. register: etcd_serving_cert
  16. - set_fact:
  17. __etcd_cert_lacks_hostname: "{{ (openshift.common.hostname not in (etcd_serving_cert.content | b64decode | lib_utils_oo_parse_certificate_san)) | bool }}"
  18. # Redeploy etcd certificates when hostnames were missing from etcd
  19. # serving certificate SANs.
  20. - import_playbook: redeploy-certificates.yml
  21. when:
  22. - true in hostvars | lib_utils_oo_select_keys(groups['oo_etcd_to_config']) | lib_utils_oo_collect('__etcd_cert_lacks_hostname') | default([false])
  23. - import_playbook: restart.yml
  24. vars:
  25. g_etcd_certificates_expired: "{{ ('expired' in (hostvars | lib_utils_oo_select_keys(groups['etcd']) | lib_utils_oo_collect('check_results.check_results.etcd') | lib_utils_oo_collect('health'))) | bool }}"
  26. when:
  27. - true in hostvars | lib_utils_oo_select_keys(groups['oo_etcd_to_config']) | lib_utils_oo_collect('__etcd_cert_lacks_hostname') | default([false])
  28. - import_playbook: ../../openshift-master/private/restart.yml
  29. when:
  30. - true in hostvars | lib_utils_oo_select_keys(groups['oo_etcd_to_config']) | lib_utils_oo_collect('__etcd_cert_lacks_hostname') | default([false])
  31. # For 1.4/3.4 we want to upgrade everyone to etcd-3.0. etcd docs say to
  32. # 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
  33. # task for RHEL and CENTOS it's simply not possible in Fedora unless you've
  34. # mirrored packages on your own because only the GA and latest versions are
  35. # available in the repos. So for Fedora we'll simply skip this, sorry.
  36. - name: Backup etcd before upgrading anything
  37. import_playbook: upgrade_backup.yml
  38. vars:
  39. etcd_backup_tag: "pre-upgrade-"
  40. when: openshift_etcd_backup | default(true) | bool
  41. - name: Drop etcdctl profiles
  42. hosts: oo_etcd_hosts_to_upgrade
  43. tasks:
  44. - import_role:
  45. name: etcd
  46. tasks_from: drop_etcdctl.yml
  47. # We only want to upgrade with the old method if the host is not part of
  48. # master host.
  49. - name: Perform etcd upgrade
  50. import_playbook: upgrade_step.yml
  51. when:
  52. - openshift_etcd_upgrade | default(true) | bool
  53. - inventory_hostname not in groups['oo_masters']
  54. # Upgrade / convert etcd to static pods
  55. - name: Upgrade etcd static pods
  56. import_playbook: upgrade_static.yml
  57. - name: Backup etcd
  58. import_playbook: upgrade_backup.yml
  59. vars:
  60. etcd_backup_tag: "post-3.0-"
  61. when: openshift_etcd_backup | default(true) | bool