aboutsummaryrefslogtreecommitdiffstats
path: root/mcp/reclass/classes/system/haproxy/proxy/listen/cicd/jenkins.yml
blob: eda12f84eddb23fe39db0b128a58205251b61cbd (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
parameters:
  _param:
    haproxy_jenkins_bind_host: ${_param:haproxy_bind_address}
    haproxy_jenkins_bind_port: 8081
    haproxy_jenkins_jnlp_bind_host: ${_param:haproxy_jenkins_bind_host}
    haproxy_jenkins_jnlp_bind_port: 50000
    haproxy_jenkins_ssl:
      enabled: false
  haproxy:
    proxy:
      listen:
        jenkins:
          mode: http
          options:
            - forwardfor
#            - httpchk
            - httpclose
            - httplog
          balance: source
          http_request:
            - action: "add-header X-Forwarded-Proto https"
              condition: "if { ssl_fc }"
          http_response:
            - action: "del-header X-Frame-Options"
          binds:
            - address: ${_param:haproxy_jenkins_bind_host}
              port: ${_param:haproxy_jenkins_bind_port}
              ssl: ${_param:haproxy_jenkins_ssl}
          servers:
            - name: ${_param:cluster_node01_name}
              host: ${_param:cluster_node01_address}
              port: 18081
              params: check
            - name: ${_param:cluster_node02_name}
              host: ${_param:cluster_node02_address}
              port: 18081
              params: backup check
            - name: ${_param:cluster_node03_name}
              host: ${_param:cluster_node03_address}
              port: 18081
              params: backup check
        jenkins_jnlp:
          mode: tcp
          balance: source
          binds:
            - address: ${_param:haproxy_jenkins_jnlp_bind_host}
              port: ${_param:haproxy_jenkins_jnlp_bind_port}
          servers:
            - name: ${_param:cluster_node01_name}
              host: ${_param:cluster_node01_address}
              port: 50001
              params: check
            - name: ${_param:cluster_node02_name}
              host: ${_param:cluster_node02_address}
              port: 50001
              params: backup check
            - name: ${_param:cluster_node03_name}
              host: ${_param:cluster_node03_address}
              port: 50001
              params: backup check