Fix nova compute container depends_on to be list
depends_on needs to be a list, not a string. Otherwise the Wants= entry in the unit file gets created with a wrong dependecy list: Wants=t.service r.service i.service p.service l.service ... Change-Id: I8776a8f1a620ea102681791e5bf2bd368424ffdc Closes-Bug: #1835031
This commit is contained in:
parent
fd4a51c18b
commit
f5295ed3ac
@ -639,7 +639,8 @@ outputs:
|
|||||||
privileged: true
|
privileged: true
|
||||||
user: nova
|
user: nova
|
||||||
restart: always
|
restart: always
|
||||||
depends_on: tripleo_nova_libvirt
|
depends_on:
|
||||||
|
- tripleo_nova_libvirt
|
||||||
healthcheck: {get_attr: [ContainersCommon, healthcheck_rpc_port]}
|
healthcheck: {get_attr: [ContainersCommon, healthcheck_rpc_port]}
|
||||||
volumes:
|
volumes:
|
||||||
list_concat:
|
list_concat:
|
||||||
|
Loading…
Reference in New Issue
Block a user