upgrade_main.yml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. - name: Backup etcd before upgrading anything
  32. import_playbook: upgrade_backup.yml
  33. vars:
  34. etcd_backup_tag: "pre-upgrade-"
  35. when: openshift_etcd_backup | default(true) | bool
  36. - name: Drop etcdctl profiles
  37. hosts: oo_etcd_hosts_to_upgrade
  38. tasks:
  39. - import_role:
  40. name: etcd
  41. tasks_from: drop_etcdctl.yml
  42. # We only want to upgrade with the old method if the host is not part of
  43. # master host.
  44. - name: Perform etcd upgrade
  45. import_playbook: upgrade_step.yml
  46. when:
  47. - openshift_etcd_upgrade | default(true) | bool
  48. - inventory_hostname not in groups['oo_masters']
  49. # Upgrade / convert etcd to static pods
  50. - name: Upgrade etcd static pods
  51. import_playbook: upgrade_static.yml
  52. - name: Backup etcd
  53. import_playbook: upgrade_backup.yml
  54. vars:
  55. etcd_backup_tag: "post-3.0-"
  56. when: openshift_etcd_backup | default(true) | bool