diff options
author | Martin Mágr <mmagr@redhat.com> | 2017-02-14 22:15:45 +0100 |
---|---|---|
committer | Martin Mágr <mmagr@redhat.com> | 2017-04-04 21:52:04 +0200 |
commit | 0e858a28a40a190c8d3cdb6b332006c04497108a (patch) | |
tree | 761b5c7bb4b1a305a029cadf7d0c8c673a7d00ec | |
parent | 3e1593759db67045a49d6c9b74ab0684f6ebabd5 (diff) |
Add monitoring agents deployment to CI
This patch enables deployment of sensu-client service in scenario001.
Depends-On: I4895e3b6d3d0e2c12c083133e423cafeecbafe88
Depends-On: Ibabd4688c00c6a12ea22055c95563d906716954d
Change-Id: I377811878712b7615c38094ecbf55dcc67d9ddd5
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | ci/environments/scenario001-multinode.yaml | 5 |
2 files changed, 7 insertions, 0 deletions
@@ -132,3 +132,5 @@ and should be executed according to the following table: +----------------+-------------+-------------+-------------+-------------+-----------------+ | fluentd | X | | | | | +----------------+-------------+-------------+-------------+-------------+-----------------+ +| sensu-client | X | | | | | ++----------------+-------------+-------------+-------------+-------------+-----------------+ diff --git a/ci/environments/scenario001-multinode.yaml b/ci/environments/scenario001-multinode.yaml index 19e70f60..5e9c5cfc 100644 --- a/ci/environments/scenario001-multinode.yaml +++ b/ci/environments/scenario001-multinode.yaml @@ -19,6 +19,7 @@ resource_registry: OS::TripleO::Tasks::ControllerPostPuppet: ../../extraconfig/tasks/post_puppet_pacemaker.yaml OS::TripleO::Tasks::ControllerPostPuppetRestart: ../../extraconfig/tasks/post_puppet_pacemaker_restart.yaml OS::TripleO::Services::FluentdClient: /usr/share/openstack-tripleo-heat-templates/puppet/services/logging/fluentd-client.yaml + OS::TripleO::Services::SensuClient: /usr/share/openstack-tripleo-heat-templates/puppet/services/monitoring/sensu-client.yaml parameter_defaults: ControllerServices: @@ -81,6 +82,7 @@ parameter_defaults: - OS::TripleO::Services::TripleoPackages - OS::TripleO::Services::TripleoFirewall - OS::TripleO::Services::FluentdClient + - OS::TripleO::Services::SensuClient ControllerExtraConfig: nova::compute::libvirt::services::libvirt_virt_type: qemu @@ -118,3 +120,6 @@ parameter_defaults: LoggingServers: - host: 127.0.0.1 port: 24224 + MonitoringRabbitHost: 127.0.0.1 + MonitoringRabbitPort: 5676 + MonitoringRabbitPassword: sensu |