zun-tempest-plugin/doc/source/install/common_prerequisites.rst
Hongbin Lu efe304dca8 Apply cookiecutter to newly split project
This tempest plugin is being split out of the main zun project in
accordance with Queens goal "Split Tempest Plugins into Separate
Repos/Projects"[1]. This patch applies the standard boilerplate files
for OpenStack projects so that it can stand on its own.

[1] https://governance.openstack.org/tc/goals/queens/split-tempest-plugins.html
2017-09-07 16:17:22 -04:00

2.1 KiB

Prerequisites

Before you install and configure the openstack service, you must create a database, service credentials, and API endpoints.

  1. To create the database, complete these steps:

    • Use the database access client to connect to the database server as the root user:

      $ mysql -u root -p
    • Create the zun_tempest_plugin database:

      CREATE DATABASE zun_tempest_plugin;
    • Grant proper access to the zun_tempest_plugin database:

      GRANT ALL PRIVILEGES ON zun_tempest_plugin.* TO 'zun_tempest_plugin'@'localhost' \
        IDENTIFIED BY 'ZUN_TEMPEST_PLUGIN_DBPASS';
      GRANT ALL PRIVILEGES ON zun_tempest_plugin.* TO 'zun_tempest_plugin'@'%' \
        IDENTIFIED BY 'ZUN_TEMPEST_PLUGIN_DBPASS';

      Replace ZUN_TEMPEST_PLUGIN_DBPASS with a suitable password.

    • Exit the database access client.

      exit;
  2. Source the admin credentials to gain access to admin-only CLI commands:

    $ . admin-openrc
  3. To create the service credentials, complete these steps:

    • Create the zun_tempest_plugin user:

      $ openstack user create --domain default --password-prompt zun_tempest_plugin
    • Add the admin role to the zun_tempest_plugin user:

      $ openstack role add --project service --user zun_tempest_plugin admin
    • Create the zun_tempest_plugin service entities:

      $ openstack service create --name zun_tempest_plugin --description "openstack" openstack
  4. Create the openstack service API endpoints:

    $ openstack endpoint create --region RegionOne \
      openstack public http://controller:XXXX/vY/%\(tenant_id\)s
    $ openstack endpoint create --region RegionOne \
      openstack internal http://controller:XXXX/vY/%\(tenant_id\)s
    $ openstack endpoint create --region RegionOne \
      openstack admin http://controller:XXXX/vY/%\(tenant_id\)s