registry_auth.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. get_checksum: false
  8. get_attributes: false
  9. get_mime: false
  10. when: oreg_auth_user is defined
  11. register: node_oreg_auth_credentials_stat
  12. # docker_creds is a custom module from lib_utils
  13. # 'docker login' requires a docker.service running on the local host, this is an
  14. # alternative implementation that operates directly on config.json
  15. - name: Create credentials for registry auth
  16. docker_creds:
  17. path: "{{ oreg_auth_credentials_path }}"
  18. registry: "{{ oreg_host }}"
  19. username: "{{ oreg_auth_user }}"
  20. password: "{{ oreg_auth_password }}"
  21. # Test that we can actually connect with provided info
  22. test_login: "{{ oreg_test_login | default(True) }}"
  23. proxy_vars: "{{ l_docker_creds_proxy_vars }}"
  24. image_name: "{{ l_docker_creds_image_name }}"
  25. when:
  26. - oreg_auth_user is defined
  27. register: node_oreg_auth_credentials_create
  28. retries: 3
  29. delay: 5
  30. until: node_oreg_auth_credentials_create is succeeded
  31. # Container images may need the registry credentials
  32. - name: Setup ro mount of /root/.docker for containerized hosts
  33. set_fact:
  34. l_bind_docker_reg_auth: True
  35. when:
  36. - openshift_is_atomic | bool
  37. - oreg_auth_user is defined
  38. - >
  39. (node_oreg_auth_credentials_stat.stat.exists
  40. or node_oreg_auth_credentials_create.changed) | bool