registry_auth.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ---
  2. - name: Check for credentials file for registry auth
  3. stat:
  4. path: "{{ oreg_auth_credentials_path }}"
  5. when: oreg_auth_user is defined
  6. register: master_oreg_auth_credentials_stat
  7. - name: Create credentials for registry auth
  8. command: "docker --config={{ oreg_auth_credentials_path }} login -u {{ oreg_auth_user }} -p {{ oreg_auth_password }} {{ oreg_host }}"
  9. when:
  10. - not (openshift_docker_alternative_creds | default(False))
  11. - oreg_auth_user is defined
  12. - (not master_oreg_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace) | bool
  13. register: master_oreg_auth_credentials_create
  14. retries: 3
  15. delay: 5
  16. until: master_oreg_auth_credentials_create.rc == 0
  17. notify:
  18. - restart master api
  19. - restart master controllers
  20. # docker_creds is a custom module from lib_utils
  21. # 'docker login' requires a docker.service running on the local host, this is an
  22. # alternative implementation for non-docker hosts. This implementation does not
  23. # check the registry to determine whether or not the credentials will work.
  24. - name: Create credentials for registry auth (alternative)
  25. docker_creds:
  26. path: "{{ oreg_auth_credentials_path }}"
  27. registry: "{{ oreg_host }}"
  28. username: "{{ oreg_auth_user }}"
  29. password: "{{ oreg_auth_password }}"
  30. when:
  31. - openshift_docker_alternative_creds | default(False) | bool
  32. - oreg_auth_user is defined
  33. - (not master_oreg_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace) | bool
  34. register: master_oreg_auth_credentials_create_alt
  35. notify:
  36. - restart master api
  37. - restart master controllers
  38. # Container images may need the registry credentials
  39. - name: Setup ro mount of /root/.docker for containerized hosts
  40. set_fact:
  41. l_bind_docker_reg_auth: True
  42. when:
  43. - openshift_is_containerized | bool
  44. - oreg_auth_user is defined
  45. - >
  46. (master_oreg_auth_credentials_stat.stat.exists
  47. or oreg_auth_credentials_replace
  48. or master_oreg_auth_credentials_create.changed
  49. or master_oreg_auth_credentials_create_alt.changed) | bool