blob: 6e3f1f6e9975a10a46bfee00d3e53bd58bb965e8 [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
Vnaumov064012f2017-11-22 12:42:58 +030012 rundeck_forward_iframe: False
13 rundeck_iframe_host: "external-proxy-endpoint"
14 rundeck_iframe_port: ${_param:haproxy_rundeck_exposed_port}
15 rundeck_iframe_ssl: False
Ilya Kharin9b2348c2017-04-13 15:55:32 +040016 rundeck:
17 server:
18 user:
19 uid: 550
20 gid: 550
21 home_dir: /srv/volumes/rundeck
22 root_dir: /srv/volumes/rundeck
Ilya Kharin3f2d64d2017-05-26 17:52:48 +040023 datasource:
24 engine: postgresql
25 host: ${_param:rundeck_postgresql_host}
26 port: ${_param:rundeck_postgresql_port}
27 username: ${_param:rundeck_postgresql_username}
28 password: ${_param:rundeck_postgresql_password}
29 database: ${_param:rundeck_postgresql_database}
Ilya Kharin9b2348c2017-04-13 15:55:32 +040030 api:
31 host: ${_param:haproxy_rundeck_bind_host}
32 port: ${_param:haproxy_rundeck_bind_port}
33 https: ${_param:haproxy_rundeck_ssl:enabled}
Vnaumov064012f2017-11-22 12:42:58 +030034 iframe:
35 external_forward: ${_param:rundeck_forward_iframe}
36 host: ${_param:rundeck_iframe_host}
37 port: ${_param:rundeck_iframe_port}
38 https: ${_param:rundeck_iframe_ssl}
Ilya Kharin9b2348c2017-04-13 15:55:32 +040039 ssh:
40 user: ${_param:rundeck_runbook_user}
41 private_key: ${_param:rundeck_runbook_private_key}
42 public_key: ${_param:rundeck_runbook_public_key}
Vladislav Naumov125d5b12017-08-14 18:32:29 +030043 timeout: ${_param:rundeck_server_ssh_timeout}