- OpenStack Cloud Computing Cookbook(Fourth Edition)
- Kevin Jackson Cody Bunch Egle Sigler James Denton
- 198字
- 2021-07-02 16:25:08
Creating OpenStack projects in Keystone
Users can't be created without having a project assigned to them, so these must be created first. For this section, we will create a project for our users, called cookbook
.
Getting ready
Ensure that you are logged on to a correctly configured OpenStack client and can access the OpenStack environment as a user with admin privileges.
Refer to Chapter 2, The OpenStack Client, for details of setting up your environment to use OpenStack command-line client.
How to do it…
To create a project in our OpenStack environment, perform the following steps:
- We start by creating a project called
cookbook
as follows:openstack project create --domain bookstore --description "Cookbook Project" cookbook
The command should produce the output similar to this:
How it works…
By running the preceding command, we just created a project in our bookstore
domain. The syntax is as follows:
openstack project create --domain <domain> --description <description> <name>
The domain
parameter is optional, used to determine which domain the project will belong to. If omitted, the project will be created in the default
domain. The description
parameter is also optional, but highly recommended. The name
parameter has to be unique to the installation.
- ASP.NET Core:Cloud-ready,Enterprise Web Application Development
- GAE編程指南
- Python科學計算(第2版)
- Python機器學習:數據分析與評分卡建模(微課版)
- Debian 7:System Administration Best Practices
- 高級C/C++編譯技術(典藏版)
- JavaScript+Vue+React全程實例
- C語言程序設計
- Oracle JDeveloper 11gR2 Cookbook
- Building Serverless Applications with Python
- Creating Mobile Apps with jQuery Mobile(Second Edition)
- Node Cookbook(Second Edition)
- Django 3.0入門與實踐
- C# Multithreaded and Parallel Programming
- Mastering Python Design Patterns