registry_auth.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ---
  2. # This playbook is intended to be included from playbooks/updates/registry_auth.yml
  3. - name: Update registry authentication credentials
  4. hosts: oo_nodes_to_config
  5. tasks:
  6. - import_role:
  7. name: openshift_node
  8. tasks_from: registry_auth.yml
  9. # If there were previously no authenticated registries, the credential file
  10. # won't be mounted in the system container; Need to rerun this step to ensure
  11. # additional mounts are provided.
  12. - import_role:
  13. name: openshift_node
  14. tasks_from: node_system_container_install.yml
  15. when: openshift_is_atomic
  16. - name: Restart nodes
  17. hosts: oo_nodes_to_config
  18. serial: "{{ openshift_restart_nodes_serial | default(1) }}"
  19. roles:
  20. - lib_openshift
  21. - openshift_facts
  22. tasks:
  23. - name: restart node
  24. service:
  25. name: "{{ openshift_service_type }}-node"
  26. state: restarted
  27. daemon-reload: yes
  28. - name: Wait for node to be ready
  29. oc_obj:
  30. state: list
  31. kind: node
  32. name: "{{ openshift.node.nodename | lower }}"
  33. register: node_output
  34. delegate_to: "{{ groups.oo_first_master.0 }}"
  35. when: inventory_hostname in groups.oo_nodes_to_config
  36. until:
  37. - node_output.results is defined
  38. - node_output.results.returncode is defined
  39. - node_output.results.results is defined
  40. - node_output.results.returncode == 0
  41. - node_output.results.results[0].status.conditions | selectattr('type', 'match', '^Ready$') | map(attribute='status') | join | bool == True
  42. # Give the node three minutes to come back online.
  43. retries: 36
  44. delay: 5