Skip to content

Commit

Permalink
Add customer facing quota documentation and updated mkdocs.yml to inc…
Browse files Browse the repository at this point in the history
…lude the quota doc in the Cloud Onboarding section.

Trying to fix signing.
Signed-off-by: David Keirns <[email protected]>
  • Loading branch information
dkeirns committed Nov 27, 2024
1 parent e8e163d commit 55f91ef
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 0 deletions.
Binary file added docs/assets/images/SkylineHomeQuota.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/limits_show.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/quota_show.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/volume_list.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions docs/openstack-quota.md
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.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,5 +292,6 @@ nav:
- Openstack Volumes: openstack-volumes.md
- Openstack Load Balancers: openstack-load-balancer.md
- Openstack Networks: openstack-networks.md
- Openstack Quotas: openstack-quota.md
- Blog: https://blog.rackspacecloud.com/
- Status: api-status.md

1 comment on commit 55f91ef

@dkeirns
Copy link
Author

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.

Please sign in to comment.