From f20730a6633a9f910a804d5205fbdbff17e622d0 Mon Sep 17 00:00:00 2001 From: Tim Rozet Date: Mon, 29 Oct 2018 16:08:04 -0400 Subject: Fixes failure to restart containers post undercloud install It looks like the docker_container ansible module will recreate the container if it fails to restart it. This is undesired behavior so moving to use shell to restart the containers. Also, fixes mistral executor container not properly mounting the ceph-ansible playbook. Additionally fixes an issue with ceph-ansible by downgrading the package. Related rhbz: https://bugzilla.redhat.com/show_bug.cgi?id=1644713 Change-Id: I3199b4af11a4170d19419f70cb53f7d74def273c Signed-off-by: Tim Rozet --- lib/ansible/playbooks/deploy_overcloud.yml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/ansible/playbooks/deploy_overcloud.yml') diff --git a/lib/ansible/playbooks/deploy_overcloud.yml b/lib/ansible/playbooks/deploy_overcloud.yml index 90c3ad1d..39fbf52e 100644 --- a/lib/ansible/playbooks/deploy_overcloud.yml +++ b/lib/ansible/playbooks/deploy_overcloud.yml @@ -80,6 +80,11 @@ - baremetal - control - compute + - name: Downgrade ceph + yum: + allow_downgrade: yes + name: ceph-ansible-3.1.6 + become: yes - name: Configure DNS server for ctlplane network shell: "{{ stackrc }} && openstack subnet set ctlplane-subnet {{ dns_server_args }}" - block: -- cgit 1.2.3-korg