mirror of https://github.com/ceph/ceph-ansible.git
10 lines
420 B
YAML
10 lines
420 B
YAML
---
|
|
- name: container registry authentication
|
|
command: '{{ container_binary }} login -u {{ ceph_docker_registry_username }} -p {{ ceph_docker_registry_password | quote }} {{ ceph_docker_registry }}'
|
|
changed_when: false
|
|
no_log: true
|
|
environment:
|
|
HTTP_PROXY: "{{ ceph_docker_http_proxy | default('') }}"
|
|
HTTPS_PROXY: "{{ ceph_docker_https_proxy | default('') }}"
|
|
NO_PROXY: "{{ ceph_docker_no_proxy }}"
|