blob: 492d1353c75cec4dd8ee30c3d33deaf97eadd5cb [file] [log] [blame]
Ilya Kharin9b2348c2017-04-13 15:55:32 +04001classes:
2 - service.rundeck.common
3 - service.rundeck.server.single
4parameters:
Ilya Kharin3f2d64d2017-05-26 17:52:48 +04005 _param:
6 rundeck_postgresql_username: rundeck
7 rundeck_postgresql_password: password
8 rundeck_postgresql_database: rundeck
9 rundeck_postgresql_host: ${_param:control_vip_address}
10 rundeck_postgresql_port: 5432
Vladislav Naumov125d5b12017-08-14 18:32:29 +030011 rundeck_server_ssh_timeout: 300000
Ilya Kharin9b2348c2017-04-13 15:55:32 +040012 rundeck:
13 server:
14 user:
15 uid: 550
16 gid: 550
17 home_dir: /srv/volumes/rundeck
18 root_dir: /srv/volumes/rundeck
Ilya Kharin3f2d64d2017-05-26 17:52:48 +040019 datasource:
20 engine: postgresql
21 host: ${_param:rundeck_postgresql_host}
22 port: ${_param:rundeck_postgresql_port}
23 username: ${_param:rundeck_postgresql_username}
24 password: ${_param:rundeck_postgresql_password}
25 database: ${_param:rundeck_postgresql_database}
Ilya Kharin9b2348c2017-04-13 15:55:32 +040026 api:
27 host: ${_param:haproxy_rundeck_bind_host}
28 port: ${_param:haproxy_rundeck_bind_port}
29 https: ${_param:haproxy_rundeck_ssl:enabled}
30 ssh:
31 user: ${_param:rundeck_runbook_user}
32 private_key: ${_param:rundeck_runbook_private_key}
33 public_key: ${_param:rundeck_runbook_public_key}
Vladislav Naumov125d5b12017-08-14 18:32:29 +030034 timeout: ${_param:rundeck_server_ssh_timeout}