|
212 | 212 | # @param nodejs_manage_repo
|
213 | 213 | # Set this to false when you have your own repositories
|
214 | 214 | # for NodeJS (default: true)
|
| 215 | +# @param redis_bind_ip |
| 216 | +# Bind IP of the Redis server. Default is 127.0.0.1 |
| 217 | +# @param workflowengine_num |
| 218 | +# The number of workflowengines to have in an active active state (default: 1) |
| 219 | +# @param scheduler_num |
| 220 | +# The number of schedulers to have in an active active state (default: 1) |
| 221 | +# @param rulesengine_num |
| 222 | +# The number of rulesengines to have in an active active state (default: 1) |
| 223 | +# @param notifier_num |
| 224 | +# The number of notifiers to have in an active active state (default: 1) |
| 225 | +# @param erlang_url |
| 226 | +# The url for the erlang repositiory to be used for rabbitmq |
| 227 | +# @param erlang_key |
| 228 | +# The gpg key for the erlang repositiory to be used for rabbitmq |
215 | 229 | #
|
216 | 230 | #
|
217 | 231 | # @example Basic Usage
|
|
314 | 328 | $rabbitmq_port = $::st2::params::rabbitmq_port,
|
315 | 329 | $rabbitmq_bind_ip = $::st2::params::rabbitmq_bind_ip,
|
316 | 330 | $rabbitmq_vhost = $::st2::params::rabbitmq_vhost,
|
| 331 | + $erlang_url = $::st2::params::erlang_url, |
| 332 | + $erlang_key = $::st2::params::erlang_key, |
| 333 | + $redis_bind_ip = $::st2::params::redis_bind_ip, |
317 | 334 | $timersengine_enabled = $::st2::params::timersengine_enabled,
|
318 | 335 | $timersengine_timezone = $::st2::params::timersengine_timezone,
|
319 | 336 | $scheduler_sleep_interval = $::st2::params::scheduler_sleep_interval,
|
|
333 | 350 | $chatops_web_url = undef,
|
334 | 351 | $nodejs_version = undef,
|
335 | 352 | $nodejs_manage_repo = true,
|
| 353 | + $workflowengine_num = $::st2::params::workflowengine_num, |
| 354 | + $scheduler_num = $::st2::params::scheduler_num, |
| 355 | + $rulesengine_num = $::st2::params::rulesengine_num, |
| 356 | + $notifier_num = $::st2::params::notifier_num, |
336 | 357 | ) inherits st2::params {
|
337 | 358 |
|
338 | 359 | ########################################
|
|
0 commit comments