From 975d862bc32510c0c9a1ae08bb511a43e97762a6 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Mon, 31 Jul 2017 17:49:24 -0400 Subject: Fix keystone, cinder, heat-api cron containers The cron containers need to run as root in order to create PID files correctly. Additionally, the keystone_cron container was misconfigured to use /usr/bin/cron instead of the correct /usr/bin/crond. Additionally we have an issue where the Kolla keystone container has hard coded ARGS for the docker container which causes -DFOREGROUND (an Apache specific argument) to get appended onto the kolla_start command thus causing crond to fail to startup correctly. This works around the issue by overriding the command and calling kolla_set_configs manually. Once we fix this in Kolla we can revisit this. Change-Id: Ib8fb2bef9a3bb89131265051e9ea304525b58374 Related-bug: 1707785 --- docker/services/heat-api.yaml | 1 + 1 file changed, 1 insertion(+) (limited to 'docker/services/heat-api.yaml') diff --git a/docker/services/heat-api.yaml b/docker/services/heat-api.yaml index 0bc331ca..9e38b060 100644 --- a/docker/services/heat-api.yaml +++ b/docker/services/heat-api.yaml @@ -133,6 +133,7 @@ outputs: heat_api_cron: image: {get_param: DockerHeatApiImage} net: host + user: root privileged: false restart: always volumes: -- cgit 1.2.3-korg