Mirantis Training Blog: What are OpenStack Keystone Domains?
What are OpenStack Domains?
A Keystone domain is an abstract resource that was introduced in version 3 of the Keystone API. A domain is a collection of users and projects that exist within the OpenStack environment. To understand what this really means, it is crucial to understand how things work without OpenStack domains.Traditionally, the resource mapping could be summed up by saying that "a user has a role in a project”. The user is typically an individual that is communicating with the cloud services, submitting requests to provision and destroy infrastructure. A role is an arbitrary bit of metadata that is used to influence that user’s authority and management within the environment. The project is a container used to group and isolate resources from one another. With the original mapping model, when the admin role was applied to a user, the user would become a cloud administrator, rather than just a project administrator, as intended.
With OpenStack project domain, the resource mapping can be summed up by saying that a “domain is made up of users and projects, wherein users can have roles at the project and domain level.” With this model, it is now possible to have an admin user for an entire domain, allowing that user to manage resources such as users and projects for that particular domain, but a user might also have a role applied just for a particular project, which behaves much like it did in the previous model.
Some of the benefits to using domains are:
- More fine grained Role Based Access Control (RBAC) capabilities
- Creating cloud administrators with the ability to delegate tasks to users
- Support for overlapping resource names such as usernames
- The ability for separate organizations to leverage different backends. For example, one can be SQL based, while another can be LDAP based
How Do You Use OpenStack Keystone Domains?
In the Liberty software release of OpenStack, the python-keystoneclient package was formally deprecated in favor of the unified python-openstackclient, which is capable of performing API operations to leverage domains.You can create a domain with an OpenStack domain name:$ openstack domain create <name>
You can check the list domains:$ openstack domain list
Once your domains are created, you can create a user in an existing domain:$ openstack user create --domain <name> --email <email> --password <pass> <username>
You can also create a project in a domain:$ openstack project create --domain <name> --description <desc> <project_name>
For security access, you can assign a role to a user in a project:$ openstack role add --project-domain <name> --project <project_name> --user <username>
Finally, you can delete a domain and all resources belonging to it (including any source code or configuration file used)
$ openstack domain set --disable <name>$ openstack domain delete <name>
Summary
Keystone domains provide OpenStack deployers with increased flexibility when dividing their computing environment into logical partitions that will be used by members of different departments of an organization or completely different organizations altogether. The resulting granularity in the authorization model provides a great mix of independent service capabilities while still ensuring isolation between users and their projects.If you have additional questions about OpenStack, take a look at the OpenStack courses that Mirantis Training offers or check any of our excellent docs online.