registry_auth.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. - name: Check for credentials file for registry auth
  3. stat:
  4. path: "{{ docker_cli_auth_config_path }}/config.json"
  5. when: oreg_auth_user is defined
  6. register: docker_cli_auth_credentials_stat
  7. - name: Create credentials for docker cli registry auth
  8. command: "docker --config={{ docker_cli_auth_config_path }} login -u {{ oreg_auth_user }} -p {{ oreg_auth_password }} {{ oreg_host }}"
  9. register: openshift_docker_credentials_create_res
  10. retries: 3
  11. delay: 5
  12. until: openshift_docker_credentials_create_res.rc == 0
  13. when:
  14. - not openshift_docker_alternative_creds | bool
  15. - oreg_auth_user is defined
  16. - (not docker_cli_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace) | bool
  17. no_log: True
  18. # docker_creds is a custom module from lib_utils
  19. # 'docker login' requires a docker.service running on the local host, this is an
  20. # alternative implementation for non-docker hosts. This implementation does not
  21. # check the registry to determine whether or not the credentials will work.
  22. - name: Create credentials for docker cli registry auth (alternative)
  23. docker_creds:
  24. path: "{{ docker_cli_auth_config_path }}"
  25. registry: "{{ oreg_host }}"
  26. username: "{{ oreg_auth_user }}"
  27. password: "{{ oreg_auth_password }}"
  28. when:
  29. - openshift_docker_alternative_creds | bool
  30. - oreg_auth_user is defined
  31. - (not docker_cli_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace) | bool
  32. no_log: True