Prerequisites¶
Before you install and configure the congress service, you must create a database, service credentials, and API endpoints.
To create the database, complete these steps:
Use the database access client to connect to the database server as the
rootuser:$ mysql -u root -pCreate the
congress_tempest_plugindatabase:CREATE DATABASE congress_tempest_plugin;
Grant proper access to the
congress_tempest_plugindatabase:GRANT ALL PRIVILEGES ON congress_tempest_plugin.* TO 'congress_tempest_plugin'@'localhost' \ IDENTIFIED BY 'CONGRESS_TEMPEST_PLUGIN_DBPASS'; GRANT ALL PRIVILEGES ON congress_tempest_plugin.* TO 'congress_tempest_plugin'@'%' \ IDENTIFIED BY 'CONGRESS_TEMPEST_PLUGIN_DBPASS';
Replace
CONGRESS_TEMPEST_PLUGIN_DBPASSwith a suitable password.Exit the database access client.
exit;
Source the
admincredentials to gain access to admin-only CLI commands:$ . admin-openrcTo create the service credentials, complete these steps:
Create the
congress_tempest_pluginuser:$ openstack user create --domain default --password-prompt congress_tempest_pluginAdd the
adminrole to thecongress_tempest_pluginuser:$ openstack role add --project service --user congress_tempest_plugin adminCreate the congress_tempest_plugin service entities:
$ openstack service create --name congress_tempest_plugin --description "congress" congress
Create the congress service API endpoints:
$ openstack endpoint create --region RegionOne \ congress public http://controller:XXXX/vY/%\(tenant_id\)s $ openstack endpoint create --region RegionOne \ congress internal http://controller:XXXX/vY/%\(tenant_id\)s $ openstack endpoint create --region RegionOne \ congress admin http://controller:XXXX/vY/%\(tenant_id\)s