registry_auth.yml 715 B

123456789101112131415161718
  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 docker cli registry auth (alternative)
  6. docker_creds:
  7. path: "{{ docker_cli_auth_config_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. when:
  14. - oreg_auth_user is defined
  15. register: crt_oreg_auth_credentials_create
  16. retries: 3
  17. delay: 5
  18. until: crt_oreg_auth_credentials_create.rc == 0