mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-19 03:33:17 +02:00
Update to 2022-07-23 13:00
This commit is contained in:
parent
7a53cdbef7
commit
5d2e9f2e70
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user