Update to 2022-07-23 13:00

This commit is contained in:
Daniel Berteaud 2022-07-23 13:00:16 +02:00
parent 7a53cdbef7
commit 5d2e9f2e70

View File

@ -18,39 +18,41 @@ consul_servers: []
# List of services exposed by consul, the ports they use, and the list of IP # List of services exposed by consul, the ports they use, and the list of IP
# for which the service is accessible at the firewall level (if iptables_manage == True) # for which the service is accessible at the firewall level (if iptables_manage == True)
consul_services: consul_base_services:
dns: dns:
port: 8600 port: "{{ consul_conf.ports.dns | default(8600) }}"
src_ip: [] src_ip: []
proto: [tcp,udp] proto: [tcp,udp]
http_api: http:
port: 8500 port: "{{ consul_conf.ports.http | default(8500) }}"
src_ip: [] src_ip: []
proto: [tcp] proto: [tcp]
https_api: https:
port: 8501 port: "{{ consul_conf.ports.https | default(8501) }}"
src_ip: [] src_ip: []
proto: [tcp] proto: [tcp]
grpc_api: grpc:
port: 8502 port: "{{ consul_conf.ports.groc | default(8502) }}"
src_ip: [] src_ip: []
proto: [tcp] proto: [tcp]
lan_serf: serf_lan:
port: 8301 port: "{{ consul_conf.ports.serf_lan | default(8301) }}"
src_ip: [] src_ip: []
proto: [tcp,udp] proto: [tcp,udp]
wan_serf: serf_wan:
port: 8302 port: "{{ consul_conf.ports.serf_wan | default(8302) }}"
src_ip: [] src_ip: []
proto: [tcp_udp] proto: [tcp,udp]
server_rpc: server:
port: 8300 port: "{{ consul_conf.ports.server | default(8300) }}"
src_ip: [] src_ip: []
proto: [tcp] proto: [tcp]
sidecar_proxy: sidecar_proxy:
port: '21000:21255' port: "{{ consul_conf.ports.sidecar_proxy_min | default(21000) }}:{{ consul_conf.ports.sidecar_proxy_max | default(21255) }}"
src_ip: [] src_ip: []
proto: [tcp] proto: [tcp]
consul_extra_services: {}
consul_services: "{{ consul_base_services | combine(consul_extra_services, recursive=True) }}"
# Consul configuration (which will be converted to JSON) # Consul configuration (which will be converted to JSON)
# The configuration is splited in a base conf and an extra conf, so you can override part of the config easily # The configuration is splited in a base conf and an extra conf, so you can override part of the config easily