Skip to content

Commit 2cf4ac2

Browse files
authored
Merge pull request #5 from thobiast/dev
Dev
2 parents 4f27ff3 + f8f3a6a commit 2cf4ac2

File tree

5 files changed

+531
-343
lines changed

5 files changed

+531
-343
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ and optional details. If no amphoras match the filter criteria, it will indicate
4343
$ usage: openstack-lb-info [-h] [-o {plain,rich,json}] -t {lb,amphora} [--name NAME] [--id ID]
4444
[--tags TAGS] [--flavor-id FLAVOR_ID] [--vip-address VIP_ADDRESS]
4545
[--availability-zone AVAILABILITY_ZONE] [--vip-network-id VIP_NETWORK_ID]
46-
[--vip-subnet-id VIP_SUBNET_ID] [--details]
46+
[--vip-subnet-id VIP_SUBNET_ID] [--details] [--max-workers MAX_WORKERS]
4747

4848
A script to show OpenStack load balancers information.
4949

@@ -54,19 +54,21 @@ options:
5454
-t {lb,amphora}, --type {lb,amphora}
5555
Show information about load balancers or amphoras
5656
--name NAME Filter load balancers name
57-
--id ID Filter load balancers id
57+
--id ID Filter load balancers id (UUID)
5858
--tags TAGS Filter load balancers tags
5959
--flavor-id FLAVOR_ID
60-
Filter load balancers flavor id
60+
Filter load balancers flavor id (UUID)
6161
--vip-address VIP_ADDRESS
6262
Filter load balancers VIP address
6363
--availability-zone AVAILABILITY_ZONE
6464
Filter load balancers AZ
6565
--vip-network-id VIP_NETWORK_ID
66-
Filter load balancers network id
66+
Filter load balancers network id (UUID)
6767
--vip-subnet-id VIP_SUBNET_ID
68-
Filter load balancers subnet id
68+
Filter load balancers subnet id (UUID)
6969
--details Show all load balancers/amphora details
70+
--max-workers MAX_WORKERS
71+
Max number of concurrent threads to fetch members details (1-32). (default: 4)
7072

7173
Example of use:
7274
openstack-lb-info

src/openstack_lb_info/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
22
"""openstack-lb-info module."""
33

4-
__version__ = "0.1.0"
4+
__version__ = "0.2.0"

0 commit comments

Comments
 (0)