2.2 KiB
Prerequisites
Before you install and configure the solum-tempest-plugin 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
solum_tempest_plugindatabase:CREATE DATABASE solum_tempest_plugin;Grant proper access to the
solum_tempest_plugindatabase:GRANT ALL PRIVILEGES ON solum_tempest_plugin.* TO 'solum_tempest_plugin'@'localhost' \ IDENTIFIED BY 'SOLUM_TEMPEST_PLUGIN_DBPASS'; GRANT ALL PRIVILEGES ON solum_tempest_plugin.* TO 'solum_tempest_plugin'@'%' \ IDENTIFIED BY 'SOLUM_TEMPEST_PLUGIN_DBPASS';Replace
SOLUM_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
solum_tempest_pluginuser:$ openstack user create --domain default --password-prompt solum_tempest_pluginAdd the
adminrole to thesolum_tempest_pluginuser:$ openstack role add --project service --user solum_tempest_plugin adminCreate the solum_tempest_plugin service entities:
$ openstack service create --name solum_tempest_plugin --description "solum-tempest-plugin" solum-tempest-plugin
Create the solum-tempest-plugin service API endpoints:
$ openstack endpoint create --region RegionOne \ solum-tempest-plugin public http://controller:XXXX/vY/%\(tenant_id\)s $ openstack endpoint create --region RegionOne \ solum-tempest-plugin internal http://controller:XXXX/vY/%\(tenant_id\)s $ openstack endpoint create --region RegionOne \ solum-tempest-plugin admin http://controller:XXXX/vY/%\(tenant_id\)s