mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 11:10:21 -07:00
apache2_mod_proxy: adjust docs (#10172)
Some checks are pending
EOL CI / EOL Sanity (Ⓐ2.15) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py2.7) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py3.10) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py3.5) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run
Some checks are pending
EOL CI / EOL Sanity (Ⓐ2.15) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py2.7) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py3.10) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py3.5) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run
This commit is contained in:
parent
1db255ff2d
commit
9e317089a8
1 changed files with 45 additions and 40 deletions
|
@ -41,8 +41,8 @@ options:
|
||||||
description:
|
description:
|
||||||
- (IPv4|IPv6|FQDN) of the balancer member to get or to set attributes to. Port number is autodetected and should not
|
- (IPv4|IPv6|FQDN) of the balancer member to get or to set attributes to. Port number is autodetected and should not
|
||||||
be specified here.
|
be specified here.
|
||||||
- If undefined, the M(community.general.apache2_mod_proxy) module will return a members list of dictionaries of all the current
|
- If undefined, the M(community.general.apache2_mod_proxy) module returns a members list of dictionaries of all the
|
||||||
balancer pool members' attributes.
|
current balancer pool members' attributes.
|
||||||
state:
|
state:
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
|
@ -116,19 +116,20 @@ member:
|
||||||
description: Specific balancer member information dictionary, returned when the module is invoked with O(member_host) parameter.
|
description: Specific balancer member information dictionary, returned when the module is invoked with O(member_host) parameter.
|
||||||
type: dict
|
type: dict
|
||||||
returned: success
|
returned: success
|
||||||
sample:
|
sample: |
|
||||||
{"attributes":
|
{
|
||||||
{"Busy": "0",
|
"attributes": {
|
||||||
"Elected": "42",
|
"Busy": "0",
|
||||||
"Factor": "1",
|
"Elected": "42",
|
||||||
"From": "136K",
|
"Factor": "1",
|
||||||
"Load": "0",
|
"From": "136K",
|
||||||
"Route": null,
|
"Load": "0",
|
||||||
"RouteRedir": null,
|
"Route": null,
|
||||||
"Set": "0",
|
"RouteRedir": null,
|
||||||
"Status": "Init Ok ",
|
"Set": "0",
|
||||||
"To": " 47K",
|
"Status": "Init Ok ",
|
||||||
"Worker URL": null
|
"To": " 47K",
|
||||||
|
"Worker URL": null
|
||||||
},
|
},
|
||||||
"balancer_url": "http://10.10.0.2/balancer-manager/",
|
"balancer_url": "http://10.10.0.2/balancer-manager/",
|
||||||
"host": "10.10.0.20",
|
"host": "10.10.0.20",
|
||||||
|
@ -137,10 +138,10 @@ member:
|
||||||
"port": 8080,
|
"port": 8080,
|
||||||
"protocol": "http",
|
"protocol": "http",
|
||||||
"status": {
|
"status": {
|
||||||
"disabled": false,
|
"disabled": false,
|
||||||
"drained": false,
|
"drained": false,
|
||||||
"hot_standby": false,
|
"hot_standby": false,
|
||||||
"ignore_errors": false
|
"ignore_errors": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
members:
|
members:
|
||||||
|
@ -148,8 +149,10 @@ members:
|
||||||
O(state) args.
|
O(state) args.
|
||||||
returned: success
|
returned: success
|
||||||
type: list
|
type: list
|
||||||
sample:
|
sample: |-
|
||||||
[{"attributes": {
|
[
|
||||||
|
{
|
||||||
|
"attributes": {
|
||||||
"Busy": "0",
|
"Busy": "0",
|
||||||
"Elected": "42",
|
"Elected": "42",
|
||||||
"Factor": "1",
|
"Factor": "1",
|
||||||
|
@ -161,21 +164,22 @@ members:
|
||||||
"Status": "Init Ok ",
|
"Status": "Init Ok ",
|
||||||
"To": " 47K",
|
"To": " 47K",
|
||||||
"Worker URL": null
|
"Worker URL": null
|
||||||
},
|
},
|
||||||
"balancer_url": "http://10.10.0.2/balancer-manager/",
|
"balancer_url": "http://10.10.0.2/balancer-manager/",
|
||||||
"host": "10.10.0.20",
|
"host": "10.10.0.20",
|
||||||
"management_url": "http://10.10.0.2/lb/?b=mywsbalancer&w=http://10.10.0.20:8080/ws&nonce=8925436c-79c6-4841-8936-e7d13b79239b",
|
"management_url": "http://10.10.0.2/lb/?b=mywsbalancer&w=http://10.10.0.20:8080/ws&nonce=8925436c-79c6-4841-8936-e7d13b79239b",
|
||||||
"path": "/ws",
|
"path": "/ws",
|
||||||
"port": 8080,
|
"port": 8080,
|
||||||
"protocol": "http",
|
"protocol": "http",
|
||||||
"status": {
|
"status": {
|
||||||
"disabled": false,
|
"disabled": false,
|
||||||
"drained": false,
|
"drained": false,
|
||||||
"hot_standby": false,
|
"hot_standby": false,
|
||||||
"ignore_errors": false
|
"ignore_errors": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{"attributes": {
|
{
|
||||||
|
"attributes": {
|
||||||
"Busy": "0",
|
"Busy": "0",
|
||||||
"Elected": "42",
|
"Elected": "42",
|
||||||
"Factor": "1",
|
"Factor": "1",
|
||||||
|
@ -187,18 +191,19 @@ members:
|
||||||
"Status": "Init Ok ",
|
"Status": "Init Ok ",
|
||||||
"To": " 47K",
|
"To": " 47K",
|
||||||
"Worker URL": null
|
"Worker URL": null
|
||||||
},
|
},
|
||||||
"balancer_url": "http://10.10.0.2/balancer-manager/",
|
"balancer_url": "http://10.10.0.2/balancer-manager/",
|
||||||
"host": "10.10.0.21",
|
"host": "10.10.0.21",
|
||||||
"management_url": "http://10.10.0.2/lb/?b=mywsbalancer&w=http://10.10.0.21:8080/ws&nonce=8925436c-79c6-4841-8936-e7d13b79239b",
|
"management_url": "http://10.10.0.2/lb/?b=mywsbalancer&w=http://10.10.0.21:8080/ws&nonce=8925436c-79c6-4841-8936-e7d13b79239b",
|
||||||
"path": "/ws",
|
"path": "/ws",
|
||||||
"port": 8080,
|
"port": 8080,
|
||||||
"protocol": "http",
|
"protocol": "http",
|
||||||
"status": {
|
"status": {
|
||||||
"disabled": false,
|
"disabled": false,
|
||||||
"drained": false,
|
"drained": false,
|
||||||
"hot_standby": false,
|
"hot_standby": false,
|
||||||
"ignore_errors": false}
|
"ignore_errors": false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue