-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add customer facing quota documentation and updated mkdocs.yml to inc…
…lude the quota doc in the Cloud Onboarding section. Trying to fix signing. Signed-off-by: David Keirns <[email protected]>
- Loading branch information
Showing
6 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# OpenStack Quotas | ||
|
||
To read more about Openstack quotas please visit the [upstream docs](https://docs.openstack.org/nova/rocky/admin/quotas.html). | ||
|
||
#### Viewing Your Quota | ||
|
||
You can view your quotas via Skyline or using the OpenStack CLI client. The Skyline home page is the easiest way to view your quota limits and utilization in one place. | ||
![SkylineHome](./assets/images/SkylineHomeQuota.png) | ||
|
||
You can also view quota information using the OpenStack CLI, however, you'll need to use a couple of commands. | ||
Use the quota option to list all of your quota limits. | ||
|
||
```shell | ||
openstack quota show | ||
``` | ||
|
||
![quota show](./assets/images/quota_show.png) | ||
|
||
The limits option returns quota limits along with utilization information for most services. | ||
|
||
```shell | ||
openstack limits show --absolute | ||
``` | ||
|
||
![limits show](./assets/images/limits_show.png) | ||
|
||
The limits option doesn't include storage volumes, so you would also need to run the volume option. | ||
|
||
```shell | ||
openstack volume list | ||
``` | ||
|
||
![volume list](./assets/images/volume_list.png) | ||
|
||
#### Increasing Your Quota | ||
|
||
If you need to request a quota increase, please contact your Account Manager or navigate to the [MyCloud](https://mycloud.rackspace.com) portal, create a ticket, and select Account as the category. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55f91ef
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
markdownlint complained about using skip-level headers in docs/openstack-quota.md, however, this is consistent with other documents and I opted to maintain consistency.