mirror of https://github.com/kubernetes/kops.git
docs(docs/operations) Adding more steps to etcd-manager restore operation to work properly
This commit is contained in:
parent
b4f60b30d0
commit
39487215b4
|
|
@ -55,8 +55,8 @@ etcd-manager-ctl --backup-store=s3://my.clusters/test.my.clusters/backups/etcd/e
|
||||||
Add a restore command for both clusters:
|
Add a restore command for both clusters:
|
||||||
|
|
||||||
```
|
```
|
||||||
etcd-manager-ctl --backup-store=s3://my.clusters/test.my.clusters/backups/etcd/main restore-backup [main backup file]
|
etcd-manager-ctl --backup-store=s3://my.clusters/test.my.clusters/backups/etcd/main restore-backup [main backup dir]
|
||||||
etcd-manager-ctl --backup-store=s3://my.clusters/test.my.clusters/backups/etcd/events restore-backup [events backup file]
|
etcd-manager-ctl --backup-store=s3://my.clusters/test.my.clusters/backups/etcd/events restore-backup [events backup dir]
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that this does not start the restore immediately; you need to restart etcd on all masters.
|
Note that this does not start the restore immediately; you need to restart etcd on all masters.
|
||||||
|
|
@ -71,6 +71,29 @@ You can follow the progress by reading the etcd logs (`/var/log/etcd(-events).lo
|
||||||
on the master that is the leader of the cluster (you can find this out by checking the etcd logs on all masters).
|
on the master that is the leader of the cluster (you can find this out by checking the etcd logs on all masters).
|
||||||
Note that the leader might be different for the `main` and `events` clusters.
|
Note that the leader might be different for the `main` and `events` clusters.
|
||||||
|
|
||||||
|
After the restore, you will probably face an intermittent connection to apiserver.
|
||||||
|
If you look at your kubernetes endpoint, you should have more address than masters. The restore bring back the address of the old masters and you should clean this up.
|
||||||
|
|
||||||
|
To verify this, check the endpoints resource of the kubernetes apiserver, like this:
|
||||||
|
```
|
||||||
|
kubectl get endpoints/kubernetes -o yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
If you see more address than masters, you will need to remove it manually inside the etcd.
|
||||||
|
|
||||||
|
Check again (this time inside the etcd) if you have more IPs than masters at the `/registry/masterleases/` path, e.g.:
|
||||||
|
```
|
||||||
|
ETCDCTL_API=3 etcdctl --cacert=/etc/kubernetes/pki/kube-apiserver/etcd-ca.crt --cert=/etc/kubernetes/pki/kube-apiserver/etcd-client.crt --key=/etc/kubernetes/pki/kube-apiserver/etcd-client.key --endpoints=https://127.0.0.1:4001 get --prefix --keys-only /registry/masterleases
|
||||||
|
```
|
||||||
|
|
||||||
|
To restore the stability within cluster you should delete the old master records and keep only the running ones:
|
||||||
|
```
|
||||||
|
ETCDCTL_API=3 etcdctl --cacert=/etc/kubernetes/pki/kube-apiserver/etcd-ca.crt --cert=/etc/kubernetes/pki/kube-apiserver/etcd-client.crt --key=/etc/kubernetes/pki/kube-apiserver/etcd-client.key --endpoints=https://127.0.0.1:4001 del /registry/masterleases/<OLD-IP>
|
||||||
|
```
|
||||||
|
NOTE: You will need to run it multiple times for each old IP, regarding the size of your master pool.
|
||||||
|
|
||||||
|
After that, you can check again the endpoint and everything should be fixed.
|
||||||
|
|
||||||
After the restore is complete, api server should come back up, and you should have a working cluster.
|
After the restore is complete, api server should come back up, and you should have a working cluster.
|
||||||
Note that the api server might be very busy for a while as it changes the cluster back to the state of the backup.
|
Note that the api server might be very busy for a while as it changes the cluster back to the state of the backup.
|
||||||
It's a good idea to temporarily increase the instance size of your masters and roll your worker nodes.
|
It's a good idea to temporarily increase the instance size of your masters and roll your worker nodes.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue