container/registry: use password from stdin

Pass the password variable via stdin for the registry login
authentication.
This allows to remove the no_log statement and see the task output
without displaying the password value.

Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
(cherry picked from commit a0e1a450d3)
pull/6427/head
Dimitri Savineau 2021-01-12 14:29:58 -05:00 committed by Guillaume Abrioux
parent b7a699f75d
commit 501e33bc6a
1 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,10 @@
--- ---
- name: container registry authentication - name: container registry authentication
command: '{{ container_binary }} login -u {{ ceph_docker_registry_username }} -p {{ ceph_docker_registry_password | quote }} {{ ceph_docker_registry }}' command: '{{ container_binary }} login -u {{ ceph_docker_registry_username }} --password-stdin {{ ceph_docker_registry }}'
args:
stdin: '{{ ceph_docker_registry_password }}'
stdin_add_newline: no
changed_when: false changed_when: false
no_log: true
environment: environment:
HTTP_PROXY: "{{ ceph_docker_http_proxy | default('') }}" HTTP_PROXY: "{{ ceph_docker_http_proxy | default('') }}"
HTTPS_PROXY: "{{ ceph_docker_https_proxy | default('') }}" HTTPS_PROXY: "{{ ceph_docker_https_proxy | default('') }}"