registry_auth.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  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: restart master
  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 registry auth (alternative)
  23. docker_creds:
  24. path: "{{ oreg_auth_credentials_path }}"
  25. registry: "{{ oreg_host }}"
  26. username: "{{ oreg_auth_user }}"
  27. password: "{{ oreg_auth_password }}"
  28. when:
  29. - openshift_docker_alternative_creds | default(False) | bool
  30. - oreg_auth_user is defined
  31. - (not master_oreg_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace) | bool
  32. register: master_oreg_auth_credentials_create_alt
  33. notify: restart master