redeploy-certificates.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. - include: ../../init/main.yml
  3. - include: ../../common/openshift-cluster/redeploy-certificates/check-expiry.yml
  4. vars:
  5. g_check_expiry_hosts: 'oo_etcd_to_config'
  6. - include: ../../common/openshift-cluster/redeploy-certificates/etcd-backup.yml
  7. - include: ../../common/openshift-etcd/certificates.yml
  8. vars:
  9. etcd_certificates_redeploy: true
  10. - include: ../../common/openshift-cluster/redeploy-certificates/masters-backup.yml
  11. - include: ../../common/openshift-master/certificates.yml
  12. vars:
  13. openshift_certificates_redeploy: true
  14. - include: ../../common/openshift-cluster/redeploy-certificates/nodes-backup.yml
  15. - include: ../../common/openshift-node/certificates.yml
  16. vars:
  17. openshift_certificates_redeploy: true
  18. - include: ../../common/openshift-etcd/restart.yml
  19. vars:
  20. g_etcd_certificates_expired: "{{ ('expired' in (hostvars | oo_select_keys(groups['etcd']) | oo_collect('check_results.check_results.etcd') | oo_collect('health'))) | bool }}"
  21. - include: ../../common/openshift-master/restart.yml
  22. - include: ../../common/openshift-node/restart.yml
  23. - include: ../../common/openshift-cluster/redeploy-certificates/router.yml
  24. when: openshift_hosted_manage_router | default(true) | bool
  25. - include: ../../common/openshift-cluster/redeploy-certificates/registry.yml
  26. when: openshift_hosted_manage_registry | default(true) | bool
  27. - include: ../../common/openshift-master/revert-client-ca.yml
  28. - include: ../../common/openshift-master/restart.yml