Hi!
I have a Kubernetes cluster (v1.5.6) with 3 nodes etcd cluster (etcd version 3.1.5).
This etcd nodes are running in three docker containers(on three hosts) on coreos in vmware.
I try to backup etcd with the following solution:
The backup has been completed succesfully.
I want to create this kubernetes cluster from zero in another vmware environment, but I need to restore etcd from snapshot for this.
So far, I have not found the right solution that works with etcd docker containers.
I try to restore with the following method, but unfortunately I did not succeed.
First, I created a new etcd node after I run the following command:
Result:
2018-06-04 09:25:52.314747 I | etcdserver/membership: added member 7ff5c9c6942f82e [
http://etcd0:2380] to cluster 5d1b637f4b7740d5
2018-06-04 09:25:52.314940 I | etcdserver/membership: added member 91b417e7701c2eeb [
http://etcd2:2380] to cluster 5d1b637f4b7740d5
2018-06-04 09:25:52.315096 I | etcdserver/membership: added member faeb78734ee4a93d [
http://etcd1:2380] to cluster 5d1b637f4b7740d5
Unfortunately, nothing happens.
What is the good solution to restore this etcd backup?
How do I create an empty etcd cluster/node and how should I restore the snapshot?
Thank you.