This patch initializes cyborgclient repository using cookiecutter template[1] [1]: https://docs.openstack.org/infra/manual/creators.html#preparing-a-new-git-repository-using-cookiecutter Change-Id: I65b979f99a675d1fed48226cdf8dd5efb18750e0
2.1 KiB
2.1 KiB
Prerequisites
Before you install and configure the Cyborg Python Client 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
cyborgclientdatabase:CREATE DATABASE cyborgclient;Grant proper access to the
cyborgclientdatabase:GRANT ALL PRIVILEGES ON cyborgclient.* TO 'cyborgclient'@'localhost' \ IDENTIFIED BY 'CYBORGCLIENT_DBPASS'; GRANT ALL PRIVILEGES ON cyborgclient.* TO 'cyborgclient'@'%' \ IDENTIFIED BY 'CYBORGCLIENT_DBPASS';Replace
CYBORGCLIENT_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
cyborgclientuser:$ openstack user create --domain default --password-prompt cyborgclientAdd the
adminrole to thecyborgclientuser:$ openstack role add --project service --user cyborgclient adminCreate the cyborgclient service entities:
$ openstack service create --name cyborgclient --description "Cyborg Python Client" cyborg python client
Create the Cyborg Python Client service API endpoints:
$ openstack endpoint create --region RegionOne \ cyborg python client public http://controller:XXXX/vY/%\(tenant_id\)s $ openstack endpoint create --region RegionOne \ cyborg python client internal http://controller:XXXX/vY/%\(tenant_id\)s $ openstack endpoint create --region RegionOne \ cyborg python client admin http://controller:XXXX/vY/%\(tenant_id\)s