aboutsummaryrefslogtreecommitdiffstats
path: root/mcp/reclass/classes/system/haproxy/proxy/listen/oss/postgresql.yml
blob: 1bc1f44c9c913e7d083c5c720912e8f449cb5a0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
parameters:
  _param:
    haproxy_postgresql_bind_host: ${_param:haproxy_bind_address}
    haproxy_postgresql_bind_port: 5432
    haproxy_postgresql_exposed_port: 15432
    haproxy_postgresql_ssl:
      enabled: false
  haproxy:
    proxy:
      listen:
        postgresql:
          mode: tcp
          balance: source
          options:
          - tcp-check
          binds:
            - address: ${_param:haproxy_postgresql_bind_host}
              port: ${_param:haproxy_postgresql_bind_port}
              ssl: ${_param:haproxy_postgresql_ssl}
          servers:
            - name: ${_param:cluster_node01_name}
              host: ${_param:cluster_node01_address}
              port: ${_param:haproxy_postgresql_exposed_port}
              params: check port ${_param:haproxy_postgresql_exposed_port}
            - name: ${_param:cluster_node02_name}
              host: ${_param:cluster_node02_address}
              port: ${_param:haproxy_postgresql_exposed_port}
              params: backup check port ${_param:haproxy_postgresql_exposed_port}
            - name: ${_param:cluster_node03_name}
              host: ${_param:cluster_node03_address}
              port: ${_param:haproxy_postgresql_exposed_port}
              params: backup check port ${_param:haproxy_postgresql_exposed_port}