Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit8420cb1

Browse files
committed
Release v0.6.0
1 parentf3c8019 commit8420cb1

File tree

9 files changed

+34
-11
lines changed

9 files changed

+34
-11
lines changed

‎CHANGELOG.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
###v0.6.0
2+
3+
This version introduces various interesting new features (like support for upcoming PostgreSQL 10 and standby cluster) and different bug fixes.
4+
5+
####New features
6+
* Support for PostgreSQL 10 ([#281](https://github.com/sorintlab/stolon/pull/281))
7+
* Standby cluster (for multi site disaster recovery and near zero downtime migration) ([#283](https://github.com/sorintlab/stolon/pull/283))
8+
* Old dead keeper removal ([#280](https://github.com/sorintlab/stolon/pull/280))
9+
* On asynchronous clusters elect master only if behind a user defined lag ([#268](https://github.com/sorintlab/stolon/pull/268))
10+
* Docker standalone, swarm and compose examples ([#231](https://github.com/sorintlab/stolon/pull/231)) and ([#238](https://github.com/sorintlab/stolon/pull/238))
11+
12+
####BugFixes
13+
14+
* Fix incorrect parsing of`synchronous_standby_names` when using synchronous replication with two or more synchronous standbys ([#264](https://github.com/sorintlab/stolon/pull/264))
15+
* Fix non atomic writes of local state files ([#265](https://github.com/sorintlab/stolon/pull/265))
16+
17+
and[many other](https://github.com/sorintlab/stolon/milestone/5)
18+
19+
Thanks to everybody who contributed to this release:
20+
21+
Alexander Ermolaev, Dario Nieuwenhuis, Euan Kemp, Ivan Sim, Jasper Siepkes, Niklas Hambüchen, Sajal Kayan
22+
23+
124
###v0.5.0
225

326
This version is a big step forward previous releases and provides many new features and a better cluster management.
@@ -22,12 +45,12 @@ Some cleanups and changes in preparation for release v0.5.0 that will receive a
2245

2346
###v0.3.0
2447

25-
* Support multiple stores via[libkv](https://github.com/docker/libkv) ([#102](https://github.com/sorintlab/stolon/pull/102)). Currently etcd and consul are supported.
48+
* Support multiple stores via[libkv](https://github.com/docker/libkv) ([#102](https://github.com/sorintlab/stolon/pull/102)). Currently etcd and consul are supported.
2649
* Can use pg_rewind to sync slaves instead of doing a full resync ([#122](https://github.com/sorintlab/stolon/pull/122)).
2750
* The`--initial-cluster-config` option has been added to the`stolon-sentinel` to provide an initial cluster configuration ([#107](https://github.com/sorintlab/stolon/pull/107)).
2851
* A cluster config option for initializing the cluster also if multiple keepers are registred has been added ([#106](https://github.com/sorintlab/stolon/pull/106)). By default a sentinel won't initialize a new if multiple keepers are registered since it cannot know which one should be the master. With this option a random keeper will be choosed as the master. This is useful when an user wants to create a new cluster with an empty database and starting all the keeper together instead of having to start only one keeper, wait it to being elected as master and then starting the other keepers.
2952
* The`--discovery-type` option has been added to the`stolon-sentinel` to choose if keeper discovery should be done using the store or kubernetes ([#129](https://github.com/sorintlab/stolon/pull/129)).
30-
* Various options has been added to the`stolon-keeper` for setting postgres superuser, replication and initial superuser usernames and passwords ([#136](https://github.com/sorintlab/stolon/pull/136)).
53+
* Various options has been added to the`stolon-keeper` for setting postgres superuser, replication and initial superuser usernames and passwords ([#136](https://github.com/sorintlab/stolon/pull/136)).
3154
* Numerous enhancements and bugfixes.
3255

3356
Thanks to all the contributors!

‎examples/kubernetes/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ There're two examples. The difference between them is how the keepers pods are d
99

1010
##Docker image
1111

12-
Prebuilt images are available on the dockerhub, the images' tags are the stolon release version plus the postgresql version (for example v0.5.0-pg9.6). Additional images are available:
12+
Prebuilt images are available on the dockerhub, the images' tags are the stolon release version plus the postgresql version (for example v0.6.0-pg9.6). Additional images are available:
1313

1414
*`latest-pg9.6`: latest released image (for stolon versions >= v0.5.0).
1515
*`master-pg9.6`: automatically built after every commit to the master branch.
@@ -24,4 +24,4 @@ make PGVERSION=9.6 TAG=stolon:master-pg9.6
2424

2525
Once the image is built you should push it to the docker registry used by your kubernetes infrastructure.
2626

27-
The provided example uses`sorintlab/stolon:master-pg9.6`
27+
The provided example uses`sorintlab/stolon:master-pg9.6`

‎examples/kubernetes/rc/stolon-keeper0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
terminationGracePeriodSeconds:10
1919
containers:
2020
-name:stolon-keeper
21-
image:sorintlab/stolon:master-pg9.6
21+
image:sorintlab/stolon:v0.6.0-pg9.6
2222
command:
2323
-"/bin/bash"
2424
-"-ec"

‎examples/kubernetes/rc/stolon-keeper1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
terminationGracePeriodSeconds:10
1919
containers:
2020
-name:stolon-keeper
21-
image:sorintlab/stolon:master-pg9.6
21+
image:sorintlab/stolon:v0.6.0-pg9.6
2222
command:
2323
-"/bin/bash"
2424
-"-ec"

‎examples/kubernetes/rc/stolon-proxy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
-name:stolon-proxy
18-
image:sorintlab/stolon:master-pg9.6
18+
image:sorintlab/stolon:v0.6.0-pg9.6
1919
command:
2020
-"/bin/bash"
2121
-"-ec"

‎examples/kubernetes/rc/stolon-sentinel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
-name:stolon-sentinel
18-
image:sorintlab/stolon:master-pg9.6
18+
image:sorintlab/stolon:v0.6.0-pg9.6
1919
command:
2020
-"/bin/bash"
2121
-"-ec"

‎examples/kubernetes/statefulset/stolon-keeper.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
terminationGracePeriodSeconds:10
1919
containers:
2020
-name:stolon-keeper
21-
image:sorintlab/stolon:master-pg9.6
21+
image:sorintlab/stolon:v0.6.0-pg9.6
2222
command:
2323
-"/bin/bash"
2424
-"-ec"

‎examples/kubernetes/statefulset/stolon-proxy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
-name:stolon-proxy
18-
image:sorintlab/stolon:master-pg9.6
18+
image:sorintlab/stolon:v0.6.0-pg9.6
1919
command:
2020
-"/bin/bash"
2121
-"-ec"

‎examples/kubernetes/statefulset/stolon-sentinel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
-name:stolon-sentinel
18-
image:sorintlab/stolon:master-pg9.6
18+
image:sorintlab/stolon:v0.6.0-pg9.6
1919
command:
2020
-"/bin/bash"
2121
-"-ec"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp