registry_auth.yml 814 B

1234567891011121314151617181920
  1. ---
  2. # docker_creds is a custom module from lib_utils
  3. # 'docker login' requires a docker.service running on the local host, this is an
  4. # alternative implementation that operates directly on config.json
  5. - name: Create credentials for registry auth (alternative)
  6. docker_creds:
  7. path: "{{ oreg_auth_credentials_path }}"
  8. registry: "{{ oreg_host }}"
  9. username: "{{ oreg_auth_user }}"
  10. password: "{{ oreg_auth_password }}"
  11. # Test that we can actually connect with provided info
  12. test_login: "{{ oreg_test_login | default(True) }}"
  13. proxy_vars: "{{ l_docker_creds_proxy_vars }}"
  14. image_name: "{{ l_docker_creds_image_name }}"
  15. when:
  16. - oreg_auth_user is defined
  17. register: master_oreg_auth_credentials_create
  18. retries: 3
  19. delay: 5
  20. until: master_oreg_auth_credentials_create is succeeded