registry_auth.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. proxy_vars: "{{ l_docker_creds_proxy_vars }}"
  21. image_name: "{{ l_docker_creds_image_name }}"
  22. when:
  23. - oreg_auth_user is defined
  24. register: node_oreg_auth_credentials_create
  25. retries: 3
  26. delay: 5
  27. until: node_oreg_auth_credentials_create is succeeded
  28. # Container images may need the registry credentials
  29. - name: Setup ro mount of /root/.docker for containerized hosts
  30. set_fact:
  31. l_bind_docker_reg_auth: True
  32. when:
  33. - openshift_is_atomic | bool
  34. - oreg_auth_user is defined
  35. - >
  36. (node_oreg_auth_credentials_stat.stat.exists
  37. or node_oreg_auth_credentials_create.changed) | bool