From 17d97f2618e56be606c9307551efdaadda8dff69 Mon Sep 17 00:00:00 2001 From: Brent Eagles Date: Mon, 13 Jan 2020 13:56:08 -0330 Subject: [PATCH] Remove --rm=true from sidecar container sync Neutron uses kill-scripts which remove the container after stopping it. If the container is launched with docker and --rm=true, the container will automatically be cleaned up and the $(CLI) rm in the kill script with error out because the container can't be found. Related-Bug: #1858662 Change-Id: I3d7940cb0816adce58e0fa778469dcec95302f67 --- .../roles/tripleo-systemd-wrapper/templates/service_sync.j2 | 1 - 1 file changed, 1 deletion(-) diff --git a/tripleo_ansible/roles/tripleo-systemd-wrapper/templates/service_sync.j2 b/tripleo_ansible/roles/tripleo-systemd-wrapper/templates/service_sync.j2 index a62cf4d2a..1d54c7609 100644 --- a/tripleo_ansible/roles/tripleo-systemd-wrapper/templates/service_sync.j2 +++ b/tripleo_ansible/roles/tripleo-systemd-wrapper/templates/service_sync.j2 @@ -26,7 +26,6 @@ function start_service { --net host \ --pid host \ --privileged \ - --rm=true \ -u root \ --name $NAME \ {{ tripleo_systemd_wrapper_image_name }} \