mirror of https://github.com/ceph/ceph-ansible.git
ceph-mon: add missing no_log for admin keyring tasks
Signed-off-by: Seena Fallah <seenafallah@gmail.com>pull/7493/head
parent
aeba99107e
commit
77be56d8cf
|
@ -130,6 +130,7 @@
|
||||||
mode: "0600"
|
mode: "0600"
|
||||||
delegate_to: "{{ item }}"
|
delegate_to: "{{ item }}"
|
||||||
loop: "{{ groups[mon_group_name] }}"
|
loop: "{{ groups[mon_group_name] }}"
|
||||||
|
no_log: "{{ no_log_on_ceph_key_tasks }}"
|
||||||
|
|
||||||
- name: Import admin keyring into mon keyring
|
- name: Import admin keyring into mon keyring
|
||||||
ceph_authtool:
|
ceph_authtool:
|
||||||
|
@ -141,8 +142,7 @@
|
||||||
environment:
|
environment:
|
||||||
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
||||||
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
||||||
no_log: false
|
no_log: "{{ no_log_on_ceph_key_tasks }}"
|
||||||
# no_log: "{{ no_log_on_ceph_key_tasks }}"
|
|
||||||
when:
|
when:
|
||||||
- cephx | bool
|
- cephx | bool
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue