mirror of https://github.com/easzlab/kubeasz.git
8 lines
396 B
YAML
8 lines
396 B
YAML
# 指定需要恢复的 etcd 数据备份,默认使用最近的一次备份
|
|
# 在ansible 控制端查看备份目录:/etc/kubeasz/clusters/_cluster_name_/backup
|
|
db_to_restore: "snapshot.db"
|
|
|
|
# etcd 集群间通信的IP和端口, 根据etcd组成员自动生成
|
|
TMP_NODES: "{% for h in groups['etcd'] %}etcd-{{ h }}=https://{{ h }}:2380,{% endfor %}"
|
|
ETCD_NODES: "{{ TMP_NODES.rstrip(',') }}"
|