Skip to content

Commit

Permalink
Merge pull request #4 from paradeum-team/jyliu
Browse files Browse the repository at this point in the history
feat: haproxy 增加 ingress nodeport 转发
  • Loading branch information
ss75710541 authored Oct 14, 2021
2 parents c3d12dc + c5f738e commit c44b99f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ansible.hosts.ha.vip.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ keepalived_image="{{registry_repo}}/osixia/keepalived:2.0.17"
keepalived_router_id=250
keepalived_auth_pass=solarfs{{keepalived_router_id}}

# open haproxy ingress tcp proxy
ingress_nodeport_http=32080
ingress_nodeport_https=32443

# helm
helm_binary_md5=e4500993ba21e5e6bdfbc084b4342025
helm_binary_url=https://pnode.solarfs.io/dn/file/{{helm_binary_md5}}/helm-v3.6.0-linux-amd64.tar.gz
Expand Down
32 changes: 31 additions & 1 deletion roles/ha-loadbalance/templates/haproxy.cfg.j2
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,35 @@ backend apiserver
option ssl-hello-chk
balance roundrobin
{% for host in groups['masters'] %}
server {{ hostvars[host].inventory_hostname}} {{ hostvars[host].ansible_host }}:{{api_server_src_port}} check
server {{ hostvars[host].inventory_hostname}} {{ hostvars[host].ansible_host }}:{{api_server_src_port}} check
{% endfor %}

{% if ingress_nodeport_http is defined %}
frontend ingress-nginx-http
bind *:80
mode tcp
option tcplog
default_backend ingress-nginx-http

backend ingress-nginx-http
mode tcp
balance roundrobin
{% for host in groups['masters'] %}
server {{ hostvars[host].inventory_hostname}} {{ hostvars[host].ansible_host }}:{{ingress_nodeport_http}} check
{% endfor %}
{% endif %}

{% if ingress_nodeport_https is defined %}
frontend ingress-nginx-https
bind *:443
mode tcp
option tcplog
default_backend ingress-nginx-https

backend ingress-nginx-https
mode tcp
balance roundrobin
{% for host in groups['masters'] %}
server {{ hostvars[host].inventory_hostname}} {{ hostvars[host].ansible_host }}:{{ingress_nodeport_https}} check
{% endfor %}
{% endif %}

0 comments on commit c44b99f

Please sign in to comment.