
Move to use tempauth to resolve memory issues resulting from an AIO swift install running in pypy. This PR adds some options for using pypy: * Set a pypy Garbage collection value This PR includes some tempauth fixes to make it useable: * Set the tempauth users based on a variable Testing is changed as follows for pypy: * Use only memcache within swift-proxy * Remove galera/keystone * Add swap for swift-storage hosts * Use tempauth for pypy * Reduce to 2 swift hosts Change-Id: Ic1ed5acc9b20853d9a159035226f97fda088f035
33 lines
918 B
Django/Jinja
33 lines
918 B
Django/Jinja
# {{ ansible_managed }}
|
|
[Unit]
|
|
Description=swift openstack service
|
|
After=syslog.target
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User={{ swift_system_user_name }}
|
|
Group={{ swift_system_group_name }}
|
|
|
|
{% if swift_pypy_enabled %}
|
|
{% if swift_pypy_gc_min is defined %}
|
|
Environment=PYPY_GC_MIN={{ swift_pypy_gc_min }}
|
|
{% endif %}
|
|
{% if swift_pypy_gc_max is defined %}
|
|
Environment=PYPY_GC_MAX={{ swift_pypy_gc_max }}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if item.value.program_override is defined %}
|
|
ExecStart={{ item.value.program_override }} {{ item.value.program_config_options|default('') }}
|
|
{% else %}
|
|
ExecStart={{ swift_bin }}/{{ item.value.program_binary | default(item.value.program_name) }} {{ item.value.program_config_options|default('') }}
|
|
{% endif %}
|
|
|
|
# Give a reasonable amount of time for the server to start up/shut down
|
|
TimeoutSec=300
|
|
Restart=on-failure
|
|
RestartSec=150
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|