ceph-csi/vendor/k8s.io/kubernetes/cluster/images/etcd/rollback
Serguei Bezverkhi e9033989a0 vendor updates
2018-03-07 11:43:06 -05:00
..
BUILD vendor updates 2018-03-07 11:43:06 -05:00
README.md vendor files 2018-01-10 13:42:26 -05:00
rollback.go vendor files 2018-01-10 13:42:26 -05:00

Rollback workflow

Build it in this directory. Make sure you have etcd dependency ready. Last time we use etcd v3.0.7.

$ go build .

Run it:

$ ./rollback2 --data-dir $ETCD_DATA_DIR --ttl 1h

This will rollback KV pairs from v3 into v2. If a key was attached to a lease before, it will be created with given TTL (default to 1h).

On success, it will print at the end:

Finished successfully

Repeat this on all etcd members.

You can do simple check on keys (if any exists):

etcdctl ls /

Important Note

This tool isn't recommended to use if any problem comes up in etcd3 backend. Please report bugs and we will fix it soon.

If it's still preferred to run this tool, please backup all your data beforehand. This tool will also back up datadir to same path with ".rollback.backup" suffix.

Caveats:

  • The tool doesn't preserve versions of keys.
  • If any v2 data exists before rollback, they will be wiped out.
  • v3 data only exists in the backup after successful rollback.

Analytics