vitrage/devstack
2018-08-07 14:36:06 +00:00
..
upgrade Add upgrade support for Vitrage 2018-06-26 17:17:16 +03:00
apache-vitrage.template Adjust Vitrage api to support Prometheus datasource 2018-07-31 08:32:12 +00:00
gate_hook_mock.sh remove enable_persistency from configuration. 2018-07-25 08:01:49 +00:00
gate_hook.sh remove enable_persistency from configuration. 2018-07-25 08:01:49 +00:00
plugin.sh remove templates dir we don't use it any more 2018-08-05 13:05:49 +00:00
README.rst Implement aodh alarm notification 2016-12-26 10:22:16 +08:00
settings adding prometheus to VITRAGE_DEFAULT_DATASOURCES in devstack 2018-08-05 16:40:59 +00:00

Enabling Vitrage in DevStack

  1. Download DevStack:
git clone https://git.openstack.org/openstack-dev/devstack.git
cd devstack
  1. Add this repo as an external repository in local.conf file:
[[local|localrc]]
enable_plugin vitrage https://git.openstack.org/openstack/vitrage
  1. Add this to add notification from nova to vitrage
[[post-config|$NOVA_CONF]]
[DEFAULT]
notification_topics = notifications,vitrage_notifications
notification_driver=messagingv2
  1. Add this to add notification from neutron to vitrage (make sure neutron is enabled in devstack)
[[post-config|$NEUTRON_CONF]]
[DEFAULT]
notification_topics = notifications,vitrage_notifications
notification_driver=messagingv2
  1. Add this to add notification from cinder to vitrage
[[post-config|$CINDER_CONF]]
[DEFAULT]
notification_topics = notifications,vitrage_notifications
notification_driver=messagingv2
  1. Add this to add notification from heat to vitrage
[[post-config|$HEAT_CONF]]
[DEFAULT]
notification_topics = notifications,vitrage_notifications
notification_driver=messagingv2
  1. Add this to add notification from aodh to vitrage
[[post-config|$AODH_CONF]]
[oslo_messaging_notifications]
driver = messagingv2
topics = notifications,vitrage_notifications
  1. Run ./stack.sh