Description of problem: HAProxy redis config is missing AUTH option. Version-Release number of selected component (if applicable): openstack-tripleo-heat-templates-5.0.0-0.20160609160634.8027ae2.el7ost.noarch How reproducible: 100% Steps to Reproduce: 1. Deploy overcloud 2. Check HAProxy config Actual results: [root@overcloud-controller-2 heat-admin]# grep -A13 redis /etc/haproxy/haproxy.cfg listen redis bind 10.0.0.10:6379 transparent balance first option tcp-check 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 10.0.0.12:6379 check fall 5 inter 2000 rise 2 server overcloud-controller-1 10.0.0.14:6379 check fall 5 inter 2000 rise 2 server overcloud-controller-2 10.0.0.13:6379 check fall 5 inter 2000 rise 2 Expected results: the config also contains a tcp-check connect directive and an AUTH option, e.g: listen redis bind 10.0.0.10: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 10.0.0.12:6379 check fall 5 inter 2000 rise 2 server overcloud-controller-1 10.0.0.14:6379 check fall 5 inter 2000 rise 2 server overcloud-controller-2 10.0.0.13:6379 check fall 5 inter 2000 rise 2 Additional info:
*** This bug has been marked as a duplicate of bug 1371657 ***