diff --git a/docs/assets/images/SkylineHomeQuota.png b/docs/assets/images/SkylineHomeQuota.png new file mode 100644 index 00000000..a7b364fc Binary files /dev/null and b/docs/assets/images/SkylineHomeQuota.png differ diff --git a/docs/assets/images/limits_show.png b/docs/assets/images/limits_show.png new file mode 100644 index 00000000..d0aac483 Binary files /dev/null and b/docs/assets/images/limits_show.png differ diff --git a/docs/assets/images/quota_show.png b/docs/assets/images/quota_show.png new file mode 100644 index 00000000..2f81b299 Binary files /dev/null and b/docs/assets/images/quota_show.png differ diff --git a/docs/assets/images/volume_list.png b/docs/assets/images/volume_list.png new file mode 100644 index 00000000..8eceb91a Binary files /dev/null and b/docs/assets/images/volume_list.png differ diff --git a/docs/openstack-quota.md b/docs/openstack-quota.md new file mode 100644 index 00000000..bf9fc270 --- /dev/null +++ b/docs/openstack-quota.md @@ -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. diff --git a/mkdocs.yml b/mkdocs.yml index 824a8344..3cc0604d 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -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