update config (#93)

This commit is contained in:
Adil Hafeez 2024-09-30 17:49:05 -07:00 committed by GitHub
parent 4182879717
commit cc35eb0cd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 575 additions and 329 deletions

View file

@ -176,7 +176,11 @@ static_resources:
hostname: "arch_fc"
{% for _, cluster in arch_clusters.items() %}
- name: {{ cluster.name }}
{% if cluster.connect_timeout -%}
connect_timeout: {{ cluster.connect_timeout }}
{% else -%}
connect_timeout: 5s
{% endif -%}
type: STRICT_DNS
lb_policy: ROUND_ROBIN
load_assignment:
@ -186,7 +190,7 @@ static_resources:
- endpoint:
address:
socket_address:
address: {{ cluster.address }}
address: {{ cluster.endpoint }}
port_value: {{ cluster.port }}
hostname: {{ cluster.address }}
hostname: {{ cluster.name }}
{% endfor %}