From a59b84d5c91567d6afc33c645fe82b072f289a11 Mon Sep 17 00:00:00 2001 From: Giulio Fidente Date: Tue, 22 Aug 2017 13:01:03 +0200 Subject: [PATCH] Assume mon_docker_privileged false in switch to containers --- ...tch-from-non-containerized-to-containerized-ceph-daemons.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure-playbooks/switch-from-non-containerized-to-containerized-ceph-daemons.yml b/infrastructure-playbooks/switch-from-non-containerized-to-containerized-ceph-daemons.yml index 87e7ee60f..0c61c671c 100644 --- a/infrastructure-playbooks/switch-from-non-containerized-to-containerized-ceph-daemons.yml +++ b/infrastructure-playbooks/switch-from-non-containerized-to-containerized-ceph-daemons.yml @@ -149,7 +149,7 @@ name: "ceph-mon-{{ ansible_hostname }}" net: "host" state: "running" - privileged: "{{ mon_docker_privileged }}" + privileged: "{{ mon_docker_privileged|default(false) }}" env: "MON_IP={{ hostvars[inventory_hostname]['ansible_' + monitor_interface]['ipv4']['address'] }},CEPH_DAEMON=MON,CEPH_PUBLIC_NETWORK={{ public_network }},CEPH_FSID={{ ceph_fsid.stdout }},{{ ceph_mon_docker_extra_env|default('') }}" volumes: "/var/lib/ceph:/var/lib/ceph,/etc/ceph:/etc/ceph,/etc/localtime:/etc/localtime:ro" -- 2.39.5