mirror of https://github.com/ceph/ceph-ansible.git
container: change the way we force no logs inside the container
Previously we were using ceph_conf_overrides however this doesn't play nice for softwares like TripleO that uses ceph_conf_overrides inside its own code. For now, and since this is the only occurence of this, we can ensure no logs through the ceph conf template. Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1532619 Signed-off-by: Sébastien Han <seb@redhat.com>pull/2317/head
parent
acfbebe67e
commit
c2e04623a5
|
@ -74,6 +74,7 @@ mon host = {% if nb_mon > 0 %}
|
|||
|
||||
{% if containerized_deployment %}
|
||||
fsid = {{ fsid }}
|
||||
log file = /dev/null
|
||||
mon host = {% if nb_mon > 0 %}
|
||||
{% for host in groups[mon_group_name] -%}
|
||||
{% if monitor_address_block != 'subnet' %}
|
||||
|
|
|
@ -1,4 +1 @@
|
|||
---
|
||||
ceph_conf_overrides:
|
||||
global:
|
||||
log_file: /dev/null
|
||||
|
|
Loading…
Reference in New Issue