Update cheatsheets

This commit is contained in:
ivuorinen
2025-08-17 00:22:45 +00:00
parent 38ecb2b6c5
commit 42c0c33dde
259 changed files with 1079 additions and 386 deletions

33
tldr/openstack-network Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# openstack network
> Manage OpenStack network resources.
> More information: <https://docs.openstack.org/python-openstackclient/latest/cli/command-objects/network.html>.
- List all networks:
`openstack network list`
- Show details of a network:
`openstack network show {{network_id_or_name}}`
- Create a new network with a given name:
`openstack network create {{network_name}}`
- Delete a network:
`openstack network delete {{network_id_or_name}}`
- Enable a network:
`openstack network set --enable {{network_id_or_name}}`
- Disable a network:
`openstack network set --disable {{network_id_or_name}}`