openstack-manuals/doc/user-guide-admin/source/manage_projects_users_and_roles.rst
Brant Knudson 466d3b49c5 Move services from projects, users, roles
Services documentation was in the "projects, users, and roles"
section, but there was already a service management section. Also,
the "projects, users, and roles" section was missing subsections
for the different resources.

The service management section was only missing some text for how
to delete a service.

Closes-Bug: #1446235
Change-Id: I5d9fe64e09b30e059aa384a00bcacb4e847dee79
2015-07-12 07:55:31 -05:00

12 KiB

Manage projects, users, and roles

As a cloud administrator, you manage projects, users, and roles. Projects are organizational units in the cloud to which you can assign users. Projects are also known as tenants or accounts. Users can be members of one or more projects. Roles define which actions users can perform. You assign roles to user-project pairs.

You can define actions for OpenStack service roles in the /etc/PROJECT/policy.json files. For example, define actions for Compute service roles in the /etc/nova/policy.json file.

You can manage projects, users, and roles independently from each other.

During cloud set up, the operator defines at least one project, user, and role.

Learn how to add, update, and delete projects and users, assign users to one or more projects, and change or remove the assignment. To enable or temporarily disable a project or user, you update that project or user. You can also change quotas at the project level.

Before you can delete a user account, you must remove the user account from its primary project.

Before you can run keystone client commands, you must download and source an OpenStack RC file. See Download and source the OpenStack RC file.

Projects

A project is a group of zero or more users. In Compute, a project owns virtual machines. In Object Storage, a project owns containers. Users can be associated with more than one project. Each project and user pairing can have a role associated with it.

Create a project

  1. To list all projects with their ID, name, and whether they are enabled or disabled:

    $ openstack project list
    +----------------------------------+--------------------+
    | id                               | name               |
    +----------------------------------+--------------------+
    | f7ac731cc11f40efbc03a9f9e1d1d21f | admin              |
    | c150ab41f0d9443f8874e32e725a4cc8 | alt_demo           |
    | a9debfe41a6d4d09a677da737b907d5e | demo               |
    | 9208739195a34c628c58c95d157917d7 | invisible_to_admin |
    | 3943a53dc92a49b2827fae94363851e1 | service            |
    | 80cab5e1f02045abad92a2864cfd76cb | test_project       |
    +----------------------------------+--------------------+
  2. Create a project named new-project:

    $ openstack project create --description 'my new project' new-project

    By default, the project is enabled.

    +-------------+----------------------------------+
    | Field       | Value                            |
    +-------------+----------------------------------+
    | description | my new project                   |
    | enabled     | True                             |
    | id          | 1a4a0618b306462c9830f876b0bd6af2 |
    | name        | new-project                      |
    +-------------+----------------------------------+

    Note the ID for the project so you can update it in the next procedure.

Update a project

Specify the project ID to update a project. You can update the name, description, and enabled status of a project.

  1. To temporarily disable a project:

    $ openstack project set PROJECT_ID --disable
  2. To enable a disabled project:

    $ openstack project set PROJECT_ID --enable
  3. To update the name of a project:

    $ openstack project set PROJECT_ID --name project-new
  4. To verify your changes, show information for the updated project:

    $ openstack project show PROJECT_ID
    +-------------+----------------------------------+
    | Field       | Value                            |
    +-------------+----------------------------------+
    | description | my new project                   |
    | enabled     | True                             |
    | id          | 1a4a0618b306462c9830f876b0bd6af2 |
    | name        | project-new                      |
    +-------------+----------------------------------+

Delete a project

  • To delete a project:

    $ openstack project delete PROJECT_ID

User

Create a user

  1. To list all users:

    $ openstack user list

    The output shows the ID and name for each user:

    +----------------------------------+----------+
    | id                               | name     |
    +----------------------------------+----------+
    | 352b37f5c89144d4ad0534139266d51f | admin    |
    | 86c0de739bcb4802b8dc786921355813 | demo     |
    | 32ec34aae8ea432e8af560a1cec0e881 | glance   |
    | 7047fcb7908e420cb36e13bbd72c972c | nova     |
    +----------------------------------+----------+
  2. To create a user, you must specify a name. Optionally, you can specify a tenant ID, password, and email address. It is recommended that you include the tenant ID and password because the user cannot log in to the dashboard without this information.

    To create the new-user user:

    $ openstack user create --project new-project --password PASSWORD new-user
    +----------+----------------------------------+
    | Field    | Value                            |
    +----------+----------------------------------+
    | email    |                                  |
    | enabled  | True                             |
    | id       | 6e5140962b424cb9814fb172889d3be2 |
    | name     | new-user                         |
    | tenantId | new-project                      |
    +----------+----------------------------------+

Update a user

You can update the name, email address, and enabled status for a user.

  1. To temporarily disable a user account:

    $ openstack user set USER_NAME --disable

    If you disable a user account, the user cannot log in to the dashboard. However, data for the user account is maintained, so you can enable the user at any time.

  2. To enable a disabled user account:

    $ openstack user set USER_NAME --enable
  3. To change the name and description for a user account:

    $ openstack user set USER_NAME --name user-new --email new-user@example.com
    User has been updated.

Delete a user

  • To delete a specified user account:

    $ openstack user delete USER_NAME

Roles and role assignments

Create and assign a role

Users can be members of multiple projects. To assign users to multiple projects, define a role and assign that role to a user-project pair.

  1. To list the available roles:

    $ openstack user list
    +----------------------------------+---------------+
    | id                               | name          |
    +----------------------------------+---------------+
    | 71ccc37d41c8491c975ae72676db687f | Member        |
    | 149f50a1fe684bfa88dae76a48d26ef7 | ResellerAdmin |
    | 9fe2ff9ee4384b1894a90878d3e92bab | _member_      |
    | 6ecf391421604da985db2f141e46a7c8 | admin         |
    | deb4fffd123c4d02a907c2c74559dccf | anotherrole   |
    +----------------------------------+---------------+
  2. To create the new-role role:

    $ openstack role create new-role
    +--------+----------------------------------+
    | Field  | Value                            |
    +--------+----------------------------------+
    | id     | bef1f95537914b1295da6aa038ef4de6 |
    | name   | new-role                         |
    +--------+----------------------------------+
  3. To assign a user to a project, you must assign the role to a user-project pair. To do this, you need the user, role, and project IDs.

    1. To list users:

      $ openstack user list
      +----------------------------------+----------+---------+----------------------+
      | id                               | name     | enabled | email                |
      +----------------------------------+----------+---------+----------------------+
      | 352b37f5c89144d4ad0534139266d51f | admin    | True    | admin@example.com    |
      | 981422ec906d4842b2fc2a8658a5b534 | alt_demo | True    | alt_demo@example.com |
      | 036e22a764ae497992f5fb8e9fd79896 | cinder   | True    | cinder@example.com   |
      | 86c0de739bcb4802b8dc786921355813 | demo     | True    | demo@example.com     |
      | 32ec34aae8ea432e8af560a1cec0e881 | glance   | True    | glance@example.com   |
      | 7047fcb7908e420cb36e13bbd72c972c | nova     | True    | nova@example.com     |
      +----------------------------------+----------+---------+----------------------+

      Note the user ID to be assigned to the role.

    2. To list role IDs:

      $ openstack role list
      +----------------------------------+---------------+
      | id                               | name          |
      +----------------------------------+---------------+
      | 71ccc37d41c8491c975ae72676db687f | Member        |
      | 149f50a1fe684bfa88dae76a48d26ef7 | ResellerAdmin |
      | 9fe2ff9ee4384b1894a90878d3e92bab | _member_      |
      | 6ecf391421604da985db2f141e46a7c8 | admin         |
      | deb4fffd123c4d02a907c2c74559dccf | anotherrole   |
      | bef1f95537914b1295da6aa038ef4de6 | new-role      |
      +----------------------------------+---------------+

      Note the role ID to be assigned.

    3. To list projects:

      $ openstack project list
      +----------------------------------+--------------------+---------+
      | id                               | name               | enabled |
      +----------------------------------+--------------------+---------+
      | f7ac731cc11f40efbc03a9f9e1d1d21f | admin              |   True  |
      | c150ab41f0d9443f8874e32e725a4cc8 | alt_demo           |   True  |
      | a9debfe41a6d4d09a677da737b907d5e | demo               |   True  |
      | 9208739195a34c628c58c95d157917d7 | invisible_to_admin |   True  |
      | caa9b4ce7d5c4225aa25d6ff8b35c31f | new-user           |   True  |
      | 1a4a0618b306462c9830f876b0bd6af2 | project-new        |   True  |
      | 3943a53dc92a49b2827fae94363851e1 | service            |   True  |
      | 80cab5e1f02045abad92a2864cfd76cb | test_project       |   True  |
      +----------------------------------+--------------------+---------+

      Note the project ID to be assigned to the role.

  4. Assign a role to a user-project pair. In this example, assign the new-role role to the demo and test-project pair:

    $ openstack role add --user USER_NAME --project TENANT_ID ROLE_NAME
  5. To verify the role assignment:

    $ openstack role list --user USER_NAME --project TENANT_ID
    +--------------+----------+----------------------------------+--------------+
    | id           | name     | user_id                          | tenant_id    |
    +--------------+----------+----------------------------------+--------------+
    | bef1f9553... | new-role | 86c0de739bcb4802b8dc786921355813 | 80cab5e1f... |
    +--------------+----------+----------------------------------+--------------+
  6. To get details for a specified role:

    $ openstack role show ROLE_NAME
    +----------+----------------------------------+
    | Field    | Value                            |
    +----------+----------------------------------+
    | id       | bef1f95537914b1295da6aa038ef4de6 |
    | name     | new-role                         |
    +----------+----------------------------------+
  7. To remove a role from a user-project pair:

    $ openstack role remove --user USER_NAME --project TENANT_ID ROLE_NAME
  8. To verify the role removal, run the following command:

    $ openstack role list --user USER_NAME --project TENANT_ID

    If the role was removed, the command output omits the removed role.