42c34763bb
* Manifest * Unit tests * Acceptance tests * Example manifest Change-Id: Ib4a65547fee27f1d7dedf0c508ef544a5347b2e6
19 lines
458 B
Puppet
19 lines
458 B
Puppet
class { '::aodh': }
|
|
class { '::aodh::api':
|
|
enabled => true,
|
|
keystone_password => 'a_big_secret',
|
|
keystone_identity_uri => 'http://127.0.0.1:35357/',
|
|
service_name => 'httpd',
|
|
}
|
|
include ::apache
|
|
class { '::aodh::wsgi::apache':
|
|
ssl => false,
|
|
}
|
|
class { '::aodh::auth':
|
|
auth_password => 'a_big_secret',
|
|
}
|
|
class { '::aodh::evaluator': }
|
|
class { '::aodh::notifier': }
|
|
class { '::aodh::listener': }
|
|
class { '::aodh::client': }
|