2021-07-08 15:51:11 -07:00
|
|
|
[gearman]
|
|
|
|
server=zuul-gearman
|
|
|
|
|
2021-05-06 14:08:36 -07:00
|
|
|
[keystore]
|
|
|
|
password={{ keystore_password }}
|
|
|
|
|
2021-07-08 15:51:11 -07:00
|
|
|
[zookeeper]
|
2021-04-07 13:35:22 -07:00
|
|
|
{% for key, value in spec.zookeeper.items() -%}
|
|
|
|
{{ key }}={{ value }}
|
|
|
|
{% endfor %}
|
2021-07-08 15:51:11 -07:00
|
|
|
|
|
|
|
[gearman_server]
|
|
|
|
start=true
|
|
|
|
|
|
|
|
[scheduler]
|
2021-04-07 13:45:44 -07:00
|
|
|
{% for key, value in spec.scheduler.items() -%}
|
|
|
|
{{ key }}={{ value }}
|
|
|
|
{% endfor %}
|
2021-07-08 15:51:11 -07:00
|
|
|
|
|
|
|
[database]
|
2021-04-07 13:35:22 -07:00
|
|
|
{% for key, value in spec.database.items() -%}
|
|
|
|
{{ key }}={{ value }}
|
|
|
|
{% endfor %}
|
2021-07-08 15:51:11 -07:00
|
|
|
|
|
|
|
[web]
|
|
|
|
listen_address=0.0.0.0
|
|
|
|
port=9000
|
|
|
|
|
2021-04-07 18:06:31 -07:00
|
|
|
[fingergw]
|
|
|
|
port=9079
|
|
|
|
|
2021-07-08 15:51:11 -07:00
|
|
|
[executor]
|
|
|
|
private_key_file=/etc/zuul/sshkey/sshkey
|
|
|
|
{% for key, value in spec.executor.items() -%}
|
|
|
|
{{ key }}={{ value }}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% for connection_name, connection in connections.items() -%}
|
|
|
|
[connection "{{ connection_name }}"]
|
|
|
|
{% for key, value in connection.items() -%}
|
|
|
|
{{ key }}={{ value }}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endfor -%}{# for connection #}
|