mirror of https://github.com/easzlab/kubeasz.git
5 lines
196 B
YAML
5 lines
196 B
YAML
|
# etcd 集群服务地址列表, 根据etcd组成员自动生成
|
||
|
TMP_ENDPOINTS: "{% for h in groups['etcd'] %}https://{{ h }}:2379,{% endfor %}"
|
||
|
ETCD_ENDPOINTS: "{{ TMP_ENDPOINTS.rstrip(',') }}"
|
||
|
|