Ilya Kharin | 9b2348c | 2017-04-13 15:55:32 +0400 | [diff] [blame] | 1 | classes: |
| 2 | - service.rundeck.common |
| 3 | - service.rundeck.server.single |
| 4 | parameters: |
Ilya Kharin | 3f2d64d | 2017-05-26 17:52:48 +0400 | [diff] [blame] | 5 | _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 Naumov | 125d5b1 | 2017-08-14 18:32:29 +0300 | [diff] [blame] | 11 | rundeck_server_ssh_timeout: 300000 |
Vnaumov | 064012f | 2017-11-22 12:42:58 +0300 | [diff] [blame] | 12 | 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 Kharin | 9b2348c | 2017-04-13 15:55:32 +0400 | [diff] [blame] | 16 | rundeck: |
| 17 | server: |
| 18 | user: |
| 19 | uid: 550 |
| 20 | gid: 550 |
| 21 | home_dir: /srv/volumes/rundeck |
| 22 | root_dir: /srv/volumes/rundeck |
Ilya Kharin | 3f2d64d | 2017-05-26 17:52:48 +0400 | [diff] [blame] | 23 | 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 Kharin | 9b2348c | 2017-04-13 15:55:32 +0400 | [diff] [blame] | 30 | api: |
| 31 | host: ${_param:haproxy_rundeck_bind_host} |
| 32 | port: ${_param:haproxy_rundeck_bind_port} |
| 33 | https: ${_param:haproxy_rundeck_ssl:enabled} |
Vnaumov | 064012f | 2017-11-22 12:42:58 +0300 | [diff] [blame] | 34 | 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 Kharin | 9b2348c | 2017-04-13 15:55:32 +0400 | [diff] [blame] | 39 | ssh: |
| 40 | user: ${_param:rundeck_runbook_user} |
| 41 | private_key: ${_param:rundeck_runbook_private_key} |
| 42 | public_key: ${_param:rundeck_runbook_public_key} |
Vladislav Naumov | 125d5b1 | 2017-08-14 18:32:29 +0300 | [diff] [blame] | 43 | timeout: ${_param:rundeck_server_ssh_timeout} |