-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generalize upgrades between different major versions (#46)
* Support upgrade between different major versions: etcd.py will check etcdcluster version and make a decision whether it needs to run old binary first (to get the data) or it could just run a new binary. * Support building of new docker images without updating Dockerfile: ``` $ docker build --build-arg ETCDVERSION_PREV=2.3.8 --build-arg ETCDVERSION=3.0.17 -t etcd-cluster:3.1.11-p18 . $ docker build --build-arg ETCDVERSION_PREV=3.0.17 --build-arg ETCDVERSION=3.1.11 -t etcd-cluster:3.1.11-p18 . $ docker build --build-arg ETCDVERSION_PREV=3.1.11 --build-arg ETCDVERSION=3.2.11 -t etcd-cluster:3.2.11-p18 . ```
- Loading branch information
1 parent
b372776
commit d1e7fe8
Showing
6 changed files
with
32 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters