registry_auth.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132
  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. # docker_creds is a custom module from lib_utils
  18. # 'docker login' requires a docker.service running on the local host, this is an
  19. # alternative implementation for non-docker hosts. This implementation does not
  20. # check the registry to determine whether or not the credentials will work.
  21. - name: Create credentials for docker cli registry auth (alternative)
  22. docker_creds:
  23. path: "{{ docker_cli_auth_config_path }}"
  24. registry: "{{ oreg_host }}"
  25. username: "{{ oreg_auth_user }}"
  26. password: "{{ oreg_auth_password }}"
  27. when:
  28. - openshift_docker_alternative_creds | bool
  29. - oreg_auth_user is defined
  30. - (not docker_cli_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace) | bool