registry_auth.yml 1.9 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. # docker_creds is a custom module from lib_utils
  18. # 'docker login' requires a docker.service running on the local host, this is an
  19. # alternative implementation for non-docker hosts. This implementation does not
  20. # check the registry to determine whether or not the credentials will work.
  21. - name: Create credentials for registry auth (alternative)
  22. docker_creds:
  23. path: "{{ oreg_auth_credentials_path }}"
  24. registry: "{{ oreg_host }}"
  25. username: "{{ oreg_auth_user }}"
  26. password: "{{ oreg_auth_password }}"
  27. when:
  28. - openshift_docker_alternative_creds | bool
  29. - oreg_auth_user is defined
  30. - (not node_oreg_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace) | bool
  31. register: node_oreg_auth_credentials_create_alt
  32. # Container images may need the registry credentials
  33. - name: Setup ro mount of /root/.docker for containerized hosts
  34. set_fact:
  35. l_bind_docker_reg_auth: True
  36. when:
  37. - openshift_is_atomic | bool
  38. - oreg_auth_user is defined
  39. - >
  40. (node_oreg_auth_credentials_stat.stat.exists
  41. or oreg_auth_credentials_replace
  42. or node_oreg_auth_credentials_create.changed
  43. or node_oreg_auth_credentials_create_alt.changed) | bool