registry_auth.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. # There might be other settings in this file besides auth; we want to ensure it
  3. # will always be bind-mounted into the node for system containers (atomic).
  4. - name: Check for credentials file for registry auth
  5. stat:
  6. path: "{{ oreg_auth_credentials_path }}"
  7. when: oreg_auth_user is defined
  8. register: node_oreg_auth_credentials_stat
  9. # docker_creds is a custom module from lib_utils
  10. # 'docker login' requires a docker.service running on the local host, this is an
  11. # alternative implementation that operates directly on config.json
  12. - name: Create credentials for registry auth
  13. docker_creds:
  14. path: "{{ oreg_auth_credentials_path }}"
  15. registry: "{{ oreg_host }}"
  16. username: "{{ oreg_auth_user }}"
  17. password: "{{ oreg_auth_password }}"
  18. # Test that we can actually connect with provided info
  19. test_login: "{{ oreg_test_login | default(True) }}"
  20. when:
  21. - oreg_auth_user is defined
  22. register: node_oreg_auth_credentials_create
  23. retries: 3
  24. delay: 5
  25. until: node_oreg_auth_credentials_create.rc == 0
  26. # Container images may need the registry credentials
  27. - name: Setup ro mount of /root/.docker for containerized hosts
  28. set_fact:
  29. l_bind_docker_reg_auth: True
  30. when:
  31. - openshift_is_atomic | bool
  32. - oreg_auth_user is defined
  33. - >
  34. (node_oreg_auth_credentials_stat.stat.exists
  35. or node_oreg_auth_credentials_create.changed) | bool