master_healthcheck.j2 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #---------------------------------------------------------------------
  2. # Example configuration for a possible web application. See the
  3. # full configuration options online.
  4. #
  5. # http://haproxy.1wt.eu/download/1.4/doc/configuration.txt
  6. #
  7. #---------------------------------------------------------------------
  8. #---------------------------------------------------------------------
  9. # Global settings
  10. #---------------------------------------------------------------------
  11. global
  12. # to have these messages end up in /var/log/haproxy.log you will
  13. # need to:
  14. #
  15. # 1) configure syslog to accept network log events. This is done
  16. # by adding the '-r' option to the SYSLOGD_OPTIONS in
  17. # /etc/sysconfig/syslog
  18. #
  19. # 2) configure local2 events to go to the /var/log/haproxy.log
  20. # file. A line like the following can be added to
  21. # /etc/sysconfig/syslog
  22. #
  23. # local2.* /var/log/haproxy.log
  24. #
  25. log 127.0.0.1 local2
  26. chroot /var/lib/haproxy
  27. pidfile /var/run/haproxy.pid
  28. maxconn 4000
  29. user haproxy
  30. group haproxy
  31. daemon
  32. # turn on stats unix socket
  33. stats socket /var/lib/haproxy/stats
  34. #---------------------------------------------------------------------
  35. # common defaults that all the 'listen' and 'backend' sections will
  36. # use if not designated in their block
  37. #---------------------------------------------------------------------
  38. defaults
  39. mode http
  40. log global
  41. option httplog
  42. option dontlognull
  43. option http-server-close
  44. option forwardfor except 127.0.0.0/8
  45. option redispatch
  46. retries 3
  47. timeout http-request 10s
  48. timeout queue 1m
  49. timeout connect 10s
  50. timeout client 1m
  51. timeout server 1m
  52. timeout http-keep-alive 10s
  53. timeout check 10s
  54. maxconn 3000
  55. #---------------------------------------------------------------------
  56. # main frontend which proxys to the backends
  57. #---------------------------------------------------------------------
  58. frontend http-proxy *:8080
  59. acl url_healthz path_beg -i /healthz
  60. use_backend ocp if url_healthz
  61. backend ocp
  62. server ocp localhost:{{ internal_console_port }} ssl verify none