ansible.builtin.rax_clb_nodes (v2.9.27) — module

add, modify and remove nodes from a Rackspace Cloud Load Balancer

| "added in version" 1.4 of ansible.builtin"

Authors: Lukasz Kawczynski (@neuroid)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.9.27

Description

Adds, modifies and removes nodes from a Rackspace Cloud Load Balancer


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Add a new node to the load balancer
- local_action:
    module: rax_clb_nodes
    load_balancer_id: 71
    address: 10.2.2.3
    port: 80
    condition: enabled
    type: primary
    wait: yes
    credentials: /path/to/credentials
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Drain connections from a node
- local_action:
    module: rax_clb_nodes
    load_balancer_id: 71
    node_id: 410
    condition: draining
    wait: yes
    credentials: /path/to/credentials
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Remove a node from the load balancer
- local_action:
    module: rax_clb_nodes
    load_balancer_id: 71
    node_id: 410
    state: absent
    wait: yes
    credentials: /path/to/credentials

Inputs

    
env:
    description:
    - Environment as configured in I(~/.pyrax.cfg), see U(https://github.com/rackspace/pyrax/blob/master/docs/getting_started.md#pyrax-configuration).
    type: str

port:
    description:
    - Port number of the load balanced service on the node
    required: false

type:
    choices:
    - primary
    - secondary
    description:
    - Type of node
    required: false

wait:
    default: 'no'
    description:
    - Wait for the load balancer to become active before returning
    required: false
    type: bool

state:
    choices:
    - present
    - absent
    default: present
    description:
    - Indicate desired state of the node
    required: false

region:
    description:
    - Region to create an instance in.
    type: str

weight:
    description:
    - Weight of node
    required: false

address:
    description:
    - IP address or domain name of the node
    required: false

api_key:
    aliases:
    - password
    description:
    - Rackspace API key, overrides I(credentials).
    type: str

node_id:
    description:
    - Node id
    required: false

username:
    description:
    - Rackspace username, overrides I(credentials).
    type: str

condition:
    choices:
    - enabled
    - disabled
    - draining
    description:
    - Condition for the node, which determines its role within the load balancer
    required: false

tenant_id:
    description:
    - The tenant ID used for authentication.
    type: str

credentials:
    aliases:
    - creds_file
    description:
    - File to find the Rackspace credentials in. Ignored if I(api_key) and I(username)
      are provided.
    type: path

tenant_name:
    description:
    - The tenant name used for authentication.
    type: str

wait_timeout:
    default: 30
    description:
    - How long to wait before giving up and returning an error
    required: false

auth_endpoint:
    description:
    - The URI of the authentication service.
    - If not specified will be set to U(https://identity.api.rackspacecloud.com/v2.0/)
    type: str

identity_type:
    default: rackspace
    description:
    - Authentication mechanism to use, such as rackspace or keystone.
    type: str

validate_certs:
    aliases:
    - verify_ssl
    description:
    - Whether or not to require SSL validation of API endpoints.
    type: bool

load_balancer_id:
    description:
    - Load balancer id
    required: true