[Docs][Director] [rhel-ospd][upgrade] Users who upgrade from ospd7.3-->8 and uses haproxy external load balancer must adjust haproxy.conf file according to the changes introduced in ospd 8
Description of problem:
haproxy.cfg file has some changes in ospd8.
If users work with ospd7.3 and haproxy external load balancer they have to adjust haproxy.cfg file on their external load balancer to reflect changes introduced in ospd8.
For example HAProxy configuration for Redis in ospd8.
listen redis
bind 172.16.20.249:6379
balance first
option tcp-check
tcp-check connect
tcp-check send AUTH\ examplepassword\r\n
tcp-check send PING\r\n
tcp-check expect string +PONG
tcp-check send info\ replication\r\n
tcp-check expect string role:master
tcp-check send QUIT\r\n
tcp-check expect string +OK
server overcloud-controller-0 172.16.20.150:6379 check fall 5 inter 2000 rise 2
server overcloud-controller-1 172.16.20.151:6379 check fall 5 inter 2000 rise 2
server overcloud-controller-2 172.16.20.152:6379 check fall 5 inter 2000 rise 2
Reassigning back to default until work becomes pertinent (ie required info becomes available).
Comment 8Sofer Athlan-Guyot
2017-05-29 12:52:36 UTC
Hi Dan,
could we add a short warning on the 8 documentation that external lb need customization for the upgrade. This is related to https://bugzilla.redhat.com/show_bug.cgi?id=1322857 and it just need to be added to upgrade documentation.