Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed trailing whitespace in openstack-quota.md and removed the s fro… #600

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 will 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 Quota: openstack-quota.md
- Blog: https://blog.rackspacecloud.com/
- Status: api-status.md
Loading