1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-16 23:55:41 +02:00

openstack-flavor: add page (#17618)

This commit is contained in:
ramadasmr 2025-08-15 09:58:41 +05:30 committed by GitHub
parent c21a051ea5
commit 5e96400d20
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,24 @@
# openstack flavor
> Manage OpenStack instance flavors (virtual hardware templates).
> More information: <https://docs.openstack.org/python-openstackclient/latest/cli/command-objects/flavor.html>.
- List all flavors:
`openstack flavor list`
- Show details of a flavor:
`openstack flavor show {{flavor_id_or_name}}`
- Create a new flavor with 2 vCPUs, 4GB RAM, and 20GB disk:
`openstack flavor create {{flavor_name}} --vcpus 2 --ram 4096 --disk 20`
- Delete a flavor:
`openstack flavor delete {{flavor_id_or_name}}`
- Create a flavor with 10GB ephemeral disk and 512MB swap space:
`openstack flavor create {{flavor_name}} --vcpus 4 --ram 8192 --disk 40 --ephemeral 10 --swap 512`