vitrage/devstack
Ian Wienand 42e6fc457c Replace openstack.org git:// URLs with https://
This is a mechanically generated change to replace openstack.org
git:// URLs with https:// equivalents.

This is in aid of a planned future move of the git hosting
infrastructure to a self-hosted instance of gitea (https://gitea.io),
which does not support the git wire protocol at this stage.

This update should result in no functional change.

For more information see the thread at

 http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html

Change-Id: I73b5406da107713be2e02b27ea9feb15f7da678a
2019-03-24 20:36:23 +00:00
..
upgrade Add upgrade support for Vitrage 2018-06-26 17:17:16 +03:00
README.rst Implement aodh alarm notification 2016-12-26 10:22:16 +08:00
apache-vitrage.template Adjust Vitrage api to support Prometheus datasource 2018-07-31 08:32:12 +00:00
gate_hook.sh Replace openstack.org git:// URLs with https:// 2019-03-24 20:36:23 +00:00
gate_hook_mock.sh Replace openstack.org git:// URLs with https:// 2019-03-24 20:36:23 +00:00
plugin.sh Replace openstack.org git:// URLs with https:// 2019-03-24 20:36:23 +00:00
settings adding prometheus to VITRAGE_DEFAULT_DATASOURCES in devstack 2018-08-05 16:40:59 +00:00

README.rst

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