registry_auth.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ---
  2. - name: Check for credentials file for registry auth
  3. stat:
  4. path: "{{ oreg_auth_credentials_path }}"
  5. when: oreg_auth_user is defined
  6. register: node_oreg_auth_credentials_stat
  7. - name: Create credentials for registry auth
  8. command: "docker --config={{ oreg_auth_credentials_path }} login -u {{ oreg_auth_user }} -p {{ oreg_auth_password }} {{ oreg_host }}"
  9. when:
  10. - not (openshift_docker_alternative_creds | default(False))
  11. - oreg_auth_user is defined
  12. - (not node_oreg_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace) | bool
  13. register: node_oreg_auth_credentials_create
  14. retries: 3
  15. delay: 5
  16. until: node_oreg_auth_credentials_create.rc == 0
  17. notify:
  18. - restart node
  19. # docker_creds is a custom module from lib_utils
  20. # 'docker login' requires a docker.service running on the local host, this is an
  21. # alternative implementation for non-docker hosts. This implementation does not
  22. # check the registry to determine whether or not the credentials will work.
  23. - name: Create credentials for registry auth (alternative)
  24. docker_creds:
  25. path: "{{ oreg_auth_credentials_path }}"
  26. registry: "{{ oreg_host }}"
  27. username: "{{ oreg_auth_user }}"
  28. password: "{{ oreg_auth_password }}"
  29. when:
  30. - openshift_docker_alternative_creds | bool
  31. - oreg_auth_user is defined
  32. - (not node_oreg_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace) | bool
  33. register: node_oreg_auth_credentials_create
  34. notify:
  35. - restart node
  36. # Container images may need the registry credentials
  37. - name: Setup ro mount of /root/.docker for containerized hosts
  38. set_fact:
  39. l_bind_docker_reg_auth: True
  40. when:
  41. - openshift.common.is_containerized | bool
  42. - oreg_auth_user is defined
  43. - (node_oreg_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace or node_oreg_auth_credentials_create.changed) | bool