main.yml 948 B

123456789101112131415161718192021222324252627
  1. ---
  2. - name: update ca trust
  3. command: update-ca-trust
  4. notify:
  5. - check for container runtime after updating ca trust
  6. - name: check for container runtime after updating ca trust
  7. command: >
  8. systemctl -q is-active {{ openshift_docker_service_name }}.service
  9. register: l_docker_installed
  10. # An rc of 0 indicates that the container runtime service is
  11. # running. We will restart it by notifying the restart handler since
  12. # we have updated the system CA trust.
  13. changed_when: l_docker_installed.rc == 0
  14. failed_when: false
  15. notify:
  16. - restart container runtime after updating ca trust
  17. - name: restart container runtime after updating ca trust
  18. systemd:
  19. name: "{{ openshift_docker_service_name }}"
  20. state: restarted
  21. when: not openshift_certificates_redeploy | default(false) | bool
  22. register: l_docker_restart_docker_in_cert_result
  23. until: not l_docker_restart_docker_in_cert_result | failed
  24. retries: 3
  25. delay: 30