certificates-backup.yml 854 B

123456789101112131415161718192021222324
  1. ---
  2. - name: Ensure node directory is absent from generated configs
  3. hosts: oo_first_master
  4. tasks:
  5. # The generated configs directory (/etc/origin/generated-configs) is
  6. # backed up during redeployment of the control plane certificates.
  7. # We need to ensure that the generated config directory for
  8. # individual nodes has been deleted before continuing, so verify
  9. # that it is missing here.
  10. - name: Ensure node directories and tarballs are absent from generated configs
  11. shell: >
  12. rm -rf {{ openshift.common.config_base }}/generated-configs/node-*
  13. args:
  14. warn: no
  15. - name: Redeploy node certificates
  16. hosts: oo_nodes_to_config:!oo_exclude_nodes_to_config
  17. pre_tasks:
  18. - name: Remove CA certificate
  19. file:
  20. path: "{{ item }}"
  21. state: absent
  22. with_items:
  23. - "{{ openshift.common.config_base }}/node/ca.crt"