mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #4356 from sivel/rename-rax-clb-nodes
Rename rax_clb_nodes
This commit is contained in:
commit
49afead191
2 changed files with 5 additions and 5 deletions
|
@ -14,7 +14,7 @@ Highlighted new features:
|
|||
New modules:
|
||||
|
||||
* cloud:ec2_eip -- manage AWS elastic IP's
|
||||
* cloud:rax_clb_nodes -- manage Rackspace cloud load balancers
|
||||
* cloud:rax_clb -- manage Rackspace cloud load balancers
|
||||
* system: firewalld -- manage the firewalld configuration
|
||||
* system: host -- manage `/etc/hosts` file entries
|
||||
* system: modprobe -- manage kernel modules on systems that support modprobe/rmmod
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
module: rax_clb_nodes
|
||||
module: rax_clb
|
||||
short_description: add, modify and remove nodes from a Rackspace Cloud Load Balancer
|
||||
description:
|
||||
- Adds, modifies and removes nodes from a Rackspace Cloud Load Balancer
|
||||
|
@ -107,7 +107,7 @@ notes:
|
|||
EXAMPLES = '''
|
||||
# Add a new node to the load balancer
|
||||
- local_action:
|
||||
module: rax_clb_nodes
|
||||
module: rax_clb
|
||||
load_balancer_id: 71
|
||||
address: 10.2.2.3
|
||||
port: 80
|
||||
|
@ -118,7 +118,7 @@ EXAMPLES = '''
|
|||
|
||||
# Drain connections from a node
|
||||
- local_action:
|
||||
module: rax_clb_nodes
|
||||
module: rax_clb
|
||||
load_balancer_id: 71
|
||||
node_id: 410
|
||||
condition: draining
|
||||
|
@ -127,7 +127,7 @@ EXAMPLES = '''
|
|||
|
||||
# Remove a node from the load balancer
|
||||
- local_action:
|
||||
module: rax_clb_nodes
|
||||
module: rax_clb
|
||||
load_balancer_id: 71
|
||||
node_id: 410
|
||||
state: absent
|
Loading…
Reference in a new issue