Make HAProxy module documentation a little easier to read.

pull/18777/head
Jeff Geerling 9 years ago committed by Matt Clay
parent ba185f1bf1
commit 0500cf602e

@ -22,75 +22,74 @@ DOCUMENTATION = '''
--- ---
module: haproxy module: haproxy
version_added: "1.9" version_added: "1.9"
short_description: An Ansible module to handle states enable/disable server and set weight to backend host in haproxy using socket commands. short_description: Enable, disable, and set weights for HAProxy backend servers using socket commands.
description: description:
- The Enable Haproxy Backend Server, with - Enable, disable, and set weights for HAProxy backend servers using socket
supports get current weight for server (default) and commands.
set weight for haproxy backend server when provides.
- The Disable Haproxy Backend Server, with
supports get current weight for server (default) and
shutdown sessions while disabling backend host server.
notes: notes:
- "enable or disable commands are restricted and can only be issued on sockets configured for level 'admin', " - Enable and disable commands are restricted and can only be issued on
- "Check - http://haproxy.1wt.eu/download/1.5/doc/configuration.txt, " sockets configured for level 'admin'. For example, you can add the line
- "Example: 'stats socket /var/run/haproxy.sock level admin'" 'stats socket /var/run/haproxy.sock level admin' to the general section of
haproxy.cfg. See http://haproxy.1wt.eu/download/1.5/doc/configuration.txt.
options: options:
state: backend:
description: description:
- describe the desired state of the given host in lb pool. - Name of the HAProxy backend pool.
required: true required: false
default: null default: auto-detected
choices: [ "enabled", "disabled" ]
host: host:
description: description:
- Host (backend) to operate in Haproxy. - Name of the backend host to change.
required: true required: true
default: null default: null
socket: shutdown_sessions:
description: description:
- Haproxy socket file name with path. - When disabling a server, immediately terminate all the sessions attached
to the specified server. This can be used to terminate long-running
sessions after a server is put into maintenance mode.
required: false required: false
default: /var/run/haproxy.sock default: false
backend: socket:
description: description:
- Name of the haproxy backend pool. - Path to the HAProxy socket file.
Required, else auto-detection applied.
required: false required: false
default: auto-detected default: /var/run/haproxy.sock
weight: state:
description: description:
- The value passed in argument. If the value ends with the '%' sign, then the new weight will be relative to the initially cnfigured weight. Relative weights are only permitted between 0 and 100% and absolute weights are permitted between 0 and 256. - Desired state of the provided backend host.
required: false required: true
default: null default: null
shutdown_sessions: choices: [ "enabled", "disabled" ]
wait:
description: description:
- When disabling server, immediately terminate all the sessions attached to the specified server. This can be used to terminate long-running sessions after a server is put into maintenance mode, for instance. - Wait until the server reports a status of 'UP' when `state=enabled`, or
status of 'MAINT' when `state=disabled`.
required: false required: false
default: false default: false
wait: version_added: "2.0"
wait_interval:
description: description:
- Wait until the server reports a status of 'UP' when state=enabled, or status of 'MAINT' when state=disabled - Number of seconds to wait between retries.
required: false required: false
default: false default: 5
version_added: "2.0" version_added: "2.0"
wait_retries: wait_retries:
description: description:
- number of times to check for status after changing the state - Number of times to check for status after changing the state.
required: false required: false
default: 25 default: 25
version_added: "2.0" version_added: "2.0"
wait_interval: weight:
description: description:
- number of seconds to wait between retries - The value passed in argument. If the value ends with the `%` sign, then
the new weight will be relative to the initially configured weight.
Relative weights are only permitted between 0 and 100% and absolute
weights are permitted between 0 and 256.
required: false required: false
default: 5 default: null
version_added: "2.0"
''' '''
EXAMPLES = ''' EXAMPLES = '''
examples:
# disable server in 'www' backend pool # disable server in 'www' backend pool
- haproxy: state=disabled host={{ inventory_hostname }} backend=www - haproxy: state=disabled host={{ inventory_hostname }} backend=www

Loading…
Cancel
Save