
As part of the Pike goals we are moving api services to run as WSGI apps. heat-api, heat-api-cfn, and heat-api-cloudwatch are now set up as WSGI apps. Since this is just a drop in replacement for existing eventlet services, operators and deployers should not notice a difference. Change-Id: I3dba17c33a7f1a1b9a03020a650e258099b4d20d Implements: blueprint goal-deploy-api-in-wsgi
35 lines
1019 B
Django/Jinja
35 lines
1019 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
[Unit]
|
|
Description=heat openstack service
|
|
After=syslog.target
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User={{ heat_system_user_name }}
|
|
Group={{ heat_system_group_name }}
|
|
|
|
{% if item.program_override is defined %}
|
|
ExecStart={{ item.program_override }} {{ program_config_options|default('') }} {{ item.log_string | default('--log-file=') }}/var/log/heat/{{ item.service_name }}.log
|
|
{% else %}
|
|
ExecStart={{ heat_bin }}/{{ item.service_name }} {{ item.program_config_options|default('') }} --log-file=/var/log/heat/{{ item.service_name }}.log
|
|
{% endif %}
|
|
|
|
# Give a reasonable amount of time for the server to start up/shut down
|
|
TimeoutSec=120
|
|
Restart=on-failure
|
|
RestartSec=2
|
|
|
|
# This creates a specific slice which all services will operate from
|
|
# The accounting options give us the ability to see resource usage through
|
|
# the `systemd-cgtop` command.
|
|
Slice=heat.slice
|
|
CPUAccounting=true
|
|
BlockIOAccounting=true
|
|
MemoryAccounting=false
|
|
TasksAccounting=true
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|