6a0a79dff2
* Deploy Gnocchi services * Create default archive policy and archive policy rule * Configure Aodh with Gnocchi which is used to evaluate the alarms for threshold Note: Tempest does not fully support Gnocchi yet. * test_alarming_api will work (Aodh) with Gnocchi * test_telemetry_notification_api will not work (Ceilometer) with Gnocchi. That's why we don't configure Ceilometer to use Gnocchi dispatcher. Depends-On: I4ed26d3e294e82c383afc443914b0d7bb1906e46 Depends-On: Ib818b5ae4fa301c6c496fe800ae45c9b0a73222c Change-Id: I32e5f80e4eb8a5cd8fc07798aaf6d710332fcdda
44 lines
1.4 KiB
Puppet
44 lines
1.4 KiB
Puppet
class openstack_integration::gnocchi {
|
|
|
|
# gnocchi is not packaged in Ubuntu Cloud Archive
|
|
# https://bugs.launchpad.net/cloud-archive/+bug/1535740
|
|
if $::osfamily == 'RedHat' {
|
|
class { '::gnocchi':
|
|
verbose => true,
|
|
debug => true,
|
|
database_connection => 'mysql+pymysql://gnocchi:gnocchi@127.0.0.1/gnocchi?charset=utf8',
|
|
}
|
|
class { '::gnocchi::db::mysql':
|
|
password => 'gnocchi',
|
|
}
|
|
class { '::gnocchi::keystone::auth':
|
|
password => 'a_big_secret',
|
|
}
|
|
class { '::gnocchi::api':
|
|
enabled => true,
|
|
keystone_password => 'a_big_secret',
|
|
keystone_identity_uri => 'http://127.0.0.1:35357/',
|
|
keystone_auth_uri => 'http://127.0.0.1:35357/',
|
|
service_name => 'httpd',
|
|
}
|
|
include ::apache
|
|
class { '::gnocchi::wsgi::apache':
|
|
ssl => false,
|
|
}
|
|
class { '::gnocchi::client': }
|
|
class { '::gnocchi::db::sync': }
|
|
class { '::gnocchi::metricd': }
|
|
class { '::gnocchi::storage': }
|
|
class { '::gnocchi::storage::file': }
|
|
class { '::gnocchi::statsd':
|
|
archive_policy_name => 'high',
|
|
flush_delay => '100',
|
|
# random datas:
|
|
resource_id => '07f26121-5777-48ba-8a0b-d70468133dd9',
|
|
user_id => 'f81e9b1f-9505-4298-bc33-43dfbd9a973b',
|
|
project_id => '203ef419-e73f-4b8a-a73f-3d599a72b18d',
|
|
}
|
|
}
|
|
|
|
}
|