Installing development sandbox¶
Configuring devstack¶
Download devstack.
Create a
local.conffile as input to devstack.Note
local.confreplaces the former configuration file calledlocalrc. If you used localrc before, remove it to switch to using the new file. For further information see the devstack configuration.The aetos service is not enabled by default, so it must be enabled in
local.confbefore runningstack.sh.This example
local.conffile shows all of the settings required for aetos, as well as how to deploy ceilometer with prometheus, which is recommended:[[local|localrc]] # Configure Ceilometer to send metrics through sg-core to Prometheus CEILOMETER_BACKEND=sg-core # Configure Prometheus to scrape sg-core and itself PROMETHEUS_CUSTOM_SCRAPE_TARGETS="localhost:3000,localhost:9090" # Enable Ceilometer enable_plugin ceilometer https://opendev.org/openstack/ceilometer # Enable Prometheus enable_plugin devstack-plugin-prometheus https://opendev.org/openstack/devstack-plugin-prometheus # Enable sg-core for forwarding metrics from Ceilometer to Prometheus enable_plugin sg-core https://github.com/infrawatch/sg-core # Enable the Aetos enable_plugin aetos https://opendev.org/openstack/aetos