ec12a4a80f
Change-Id: I2cf2ec4109e68065b9da63167e42a6c9db9fe8d1 Implements: blueprint ops-guide-rst
50 lines
1.5 KiB
ReStructuredText
50 lines
1.5 KiB
ReStructuredText
=================
|
|
Managing Projects
|
|
=================
|
|
|
|
Users must be associated with at least one project, though they may
|
|
belong to many. Therefore, you should add at least one project before
|
|
adding users.
|
|
|
|
Adding Projects
|
|
~~~~~~~~~~~~~~~
|
|
|
|
To create a project through the OpenStack dashboard:
|
|
|
|
#. Log in as an administrative user.
|
|
|
|
#. Select the :guilabel:`Identity` tab in the left navigation bar.
|
|
|
|
#. Under Identity tab, click :guilabel:`Projects`.
|
|
|
|
#. Click the :guilabel:`Create Project` button.
|
|
|
|
You are prompted for a project name and an optional, but recommended,
|
|
description. Select the checkbox at the bottom of the form to enable
|
|
this project. By default, it is enabled, as shown in
|
|
:ref:`figure_create_project`.
|
|
|
|
.. _figure_create_project:
|
|
|
|
.. figure:: figures/osog_0901.png
|
|
:alt: Dashboard's Create Project form
|
|
|
|
Figure Dashboard's Create Project form
|
|
|
|
It is also possible to add project members and adjust the project
|
|
quotas. We'll discuss those actions later, but in practice, it can be
|
|
quite convenient to deal with all these operations at one time.
|
|
|
|
To add a project through the command line, you must use the OpenStack
|
|
command line client.
|
|
|
|
.. code-block:: console
|
|
|
|
# openstack project create demo
|
|
|
|
This command creates a project named "demo." Optionally, you can add a
|
|
description string by appending :option:`--description tenant-description`,
|
|
which can be very useful. You can also
|
|
create a group in a disabled state by appending :option:`--disable` to the
|
|
command. By default, projects are created in an enabled state.
|