Skip to content

Commit 8a799b3

Browse files
author
Fabrizio Soppelsa
committed
Order options in openstack.md, to make docs more readable
Signed-off-by: Fabrizio Soppelsa <fsoppelsa@mirantis.com>
1 parent 7f49930 commit 8a799b3

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

docs/drivers/openstack.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -20,50 +20,50 @@ Mandatory:
2020

2121
Options:
2222

23-
- `--openstack-insecure`: Explicitly allow openstack driver to perform "insecure" SSL (https) requests. The server's certificate will not be verified against any certificate authorities. This option should be used with caution.
24-
- `--openstack-domain-name` or `--openstack-domain-id`: Domain to use for authentication (Keystone v3 only)
25-
- `--openstack-username`: User identifier to authenticate with.
26-
- `--openstack-password`: User password. It can be omitted if the standard environment variable `OS_PASSWORD` is set.
27-
- `--openstack-tenant-name` or `--openstack-tenant-id`: Identify the tenant in which the machine will be created.
28-
- `--openstack-region`: The region to work on. Can be omitted if there is only one region on the OpenStack.
23+
- `--openstack-active-timeout`: The timeout in seconds until the OpenStack instance must be active.
2924
- `--openstack-availability-zone`: The availability zone in which to launch the server.
25+
- `--openstack-domain-name` or `--openstack-domain-id`: Domain to use for authentication (Keystone v3 only).
3026
- `--openstack-endpoint-type`: Endpoint type can be `internalURL`, `adminURL` on `publicURL`. If is a helper for the driver
3127
to choose the right URL in the OpenStack service catalog. If not provided the default id `publicURL`
32-
- `--openstack-net-name` or `--openstack-net-id`: Identify the private network the machine will be connected on. If your OpenStack project project contains only one private network it will be use automatically.
33-
- `--openstack-sec-groups`: If security groups are available on your OpenStack you can specify a comma separated list
34-
to use for the machine (e.g. `secgrp001,secgrp002`).
3528
- `--openstack-floatingip-pool`: The IP pool that will be used to get a public IP can assign it to the machine. If there is an
3629
IP address already allocated but not assigned to any machine, this IP will be chosen and assigned to the machine. If
3730
there is no IP address already allocated a new IP will be allocated and assigned to the machine.
31+
- `--openstack-insecure`: Explicitly allow openstack driver to perform "insecure" SSL (https) requests. The server's certificate will not be verified against any certificate authorities. This option should be used with caution.
3832
- `--openstack-ip-version`: If the instance has both IPv4 and IPv6 address, you can select IP version. If not provided `4` will be used.
39-
- `--openstack-ssh-user`: The username to use for SSH into the machine. If not provided `root` will be used.
33+
- `--openstack-net-name` or `--openstack-net-id`: Identify the private network the machine will be connected on. If your OpenStack project project contains only one private network it will be use automatically.
34+
- `--openstack-password`: User password. It can be omitted if the standard environment variable `OS_PASSWORD` is set.
35+
- `--openstack-region`: The region to work on. Can be omitted if there is only one region on the OpenStack.
36+
- `--openstack-sec-groups`: If security groups are available on your OpenStack you can specify a comma separated list
37+
to use for the machine (e.g. `secgrp001,secgrp002`).
38+
- `--openstack-username`: User identifier to authenticate with.
4039
- `--openstack-ssh-port`: Customize the SSH port if the SSH server on the machine does not listen on the default port.
41-
- `--openstack-active-timeout`: The timeout in seconds until the OpenStack instance must be active.
40+
- `--openstack-ssh-user`: The username to use for SSH into the machine. If not provided `root` will be used.
41+
- `--openstack-tenant-name` or `--openstack-tenant-id`: Identify the tenant in which the machine will be created.
4242

4343
Environment variables and default values:
4444

4545
| CLI option | Environment variable | Default |
4646
| ------------------------------- | ---------------------- | ----------- |
47+
| `--openstack-active-timeout` | `OS_ACTIVE_TIMEOUT` | `200` |
4748
| `--openstack-auth-url` | `OS_AUTH_URL` | - |
48-
| `--openstack-flavor-name` | `OS_FLAVOR_NAME` | - |
49+
| `--openstack-availability-zone` | `OS_AVAILABILITY_ZONE` | - |
50+
| `--openstack-domain-id` | `OS_DOMAIN_ID` | - |
51+
| `--openstack-domain-name` | `OS_DOMAIN_NAME` | - |
52+
| `--openstack-endpoint-type` | `OS_ENDPOINT_TYPE` | `publicURL` |
4953
| `--openstack-flavor-id` | `OS_FLAVOR_ID` | - |
50-
| `--openstack-image-name` | `OS_IMAGE_NAME` | - |
54+
| `--openstack-flavor-name` | `OS_FLAVOR_NAME` | - |
55+
| `--openstack-floatingip-pool` | `OS_FLOATINGIP_POOL` | - |
5156
| `--openstack-image-id` | `OS_IMAGE_ID` | - |
57+
| `--openstack-image-name` | `OS_IMAGE_NAME` | - |
5258
| `--openstack-insecure` | `OS_INSECURE` | `false` |
53-
| `--openstack-domain-name` | `OS_DOMAIN_NAME` | - |
54-
| `--openstack-domain-id` | `OS_DOMAIN_ID` | - |
55-
| `--openstack-username` | `OS_USERNAME` | - |
59+
| `--openstack-ip-version` | `OS_IP_VERSION` | `4` |
60+
| `--openstack-net-id` | `OS_NETWORK_ID` | - |
61+
| `--openstack-net-name` | `OS_NETWORK_NAME` | - |
5662
| `--openstack-password` | `OS_PASSWORD` | - |
57-
| `--openstack-tenant-name` | `OS_TENANT_NAME` | - |
58-
| `--openstack-tenant-id` | `OS_TENANT_ID` | - |
5963
| `--openstack-region` | `OS_REGION_NAME` | - |
60-
| `--openstack-availability-zone` | `OS_AVAILABILITY_ZONE` | - |
61-
| `--openstack-endpoint-type` | `OS_ENDPOINT_TYPE` | `publicURL` |
62-
| `--openstack-net-name` | `OS_NETWORK_NAME` | - |
63-
| `--openstack-net-id` | `OS_NETWORK_ID` | - |
6464
| `--openstack-sec-groups` | `OS_SECURITY_GROUPS` | - |
65-
| `--openstack-floatingip-pool` | `OS_FLOATINGIP_POOL` | - |
66-
| `--openstack-ip-version` | `OS_IP_VERSION` | `4` |
67-
| `--openstack-ssh-user` | `OS_SSH_USER` | `root` |
6865
| `--openstack-ssh-port` | `OS_SSH_PORT` | `22` |
69-
| `--openstack-active-timeout` | `OS_ACTIVE_TIMEOUT` | `200` |
66+
| `--openstack-ssh-user` | `OS_SSH_USER` | `root` |
67+
| `--openstack-tenant-id` | `OS_TENANT_ID` | - |
68+
| `--openstack-tenant-name` | `OS_TENANT_NAME` | - |
69+
| `--openstack-username` | `OS_USERNAME` | - |

0 commit comments

Comments
 (0)