Support for haproxy
New in version 2014.7.0.
Disable server in haproxy.
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.disable_server db1.example.com mysql
Enable Server in haproxy
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.enable_server web1.example.com www
Receive information about a specific backend.
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.get_backend mysql
New in version 2016.11.0.
Get number of current sessions on server in backend (scur)
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.get_sessions web1.example.com www
Get server weight
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.get_weight web1.example.com www
List HaProxy Backends
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.list_backends
List HaProxy frontends
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.list_frontends
List servers in haproxy backend.
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.list_servers mysql
Force a server's administrative state to a new state. This can be useful to disable load balancing and/or any traffic to a server. Setting the state to "ready" puts the server in normal mode, and the command is the equivalent of the "enable server" command. Setting the state to "maint" disables any traffic to the server as well as any health checks. This is the equivalent of the "disable server" command. Setting the mode to "drain" only removes the server from load balancing but still allows it to be checked and to accept new persistent connections. Changes are propagated to tracking servers if any.
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.set_state my_proxy_server my_backend ready
Set server weight
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.set_weight web1.example.com www 13
Show HaProxy Backends
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.show_backends
Show HaProxy frontends
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.show_frontends
Wait for a specific server state
/var/run/haproxy.sock
CLI Example:
salt '*' haproxy.wait_state mysql server01 up 60
© 2019 SaltStack.
Licensed under the Apache License, Version 2.0.
https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.haproxyconn.html