While deploying a vnf with autoscaling, heat translator failed with premission denied error. This issue occured because [1] opening file in root dir (i.e. '/'), due to which it giving permission denied. Fixing it by setting current working dir as '/temp' [1]: https://github.com/openstack/heat-translator/blob/master/translator/hot/tosca_translator.py#L69 Change-Id: Ib2b0fd6c4c32a523b9fb25f47eae19225b84439f Closes-bug: #1749394
13 lines
275 B
Desktop File
13 lines
275 B
Desktop File
[Unit]
|
|
Description = OpenStack tacker service
|
|
|
|
[Service]
|
|
ExecReload = /bin/kill -HUP $MAINPID
|
|
TimeoutStopSec = 300
|
|
KillMode = process
|
|
WorkingDirectory = /tmp
|
|
ExecStart=/usr/local/bin/tacker-server --config-file /etc/tacker/tacker.conf
|
|
|
|
[Install]
|
|
WantedBy = multi-user.target
|