Skip to content

Commit 5b20192

Browse files
committed
Release v0.11.0
1 parent 816ba2b commit 5b20192

File tree

5 files changed

+24
-9
lines changed

5 files changed

+24
-9
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
### v0.11.0
22

3-
* In the k8s store backend, stolon components discovery now uses the `component` label instead of the `app` label.
3+
#### New features
4+
5+
* In the k8s store backend, stolon components discovery now uses the `component` label instead of the `app` label (See Upgrade Notes) ([#469](https://github.com/sorintlab/stolon/pull/469))
6+
* Improved docker swarm examples to resemble the k8s one ([#482](https://github.com/sorintlab/stolon/pull/482))
7+
* If the user enabled ssl/tls use it also for replication/pg_rewind connections ([#501](https://github.com/sorintlab/stolon/pull/501))
8+
* Remove final newline from example base64 password in k8s example ([#505](https://github.com/sorintlab/stolon/pull/505))
9+
10+
#### Bug Fixes
11+
12+
* Fixed wrong libkv store election path (See Upgrade Notes) ([#479](https://github.com/sorintlab/stolon/pull/479))
13+
* Fixed a check in synchronous replication that will block future synchronous standbys updates under some circumstances ([#494](https://github.com/sorintlab/stolon/pull/494))
14+
* Fixed atomic writes of postgresql genenerated files ([#495](https://github.com/sorintlab/stolon/pull/495))
15+
16+
Thanks to everybody who contributed to this release:
17+
18+
Bill Helgeson, Niklas Hambüchen, Sylvere Richard, Tyler Kellen
19+
420

521
## Upgrades notes.
622

@@ -28,7 +44,6 @@ Pierre Alexandre Assouad, Arun Babu Neelicattu, Sergey Kim
2844
* The logs will be colored only when on a tty or when `--log-color` is provided ([#416](https://github.com/sorintlab/stolon/pull/416))
2945
* Now the store prefix is configurable `--store-prefix` ([#425](https://github.com/sorintlab/stolon/pull/425))
3046

31-
3247
#### BugFixes
3348

3449
* Fixed keeper missing waits for instance ready ([#418](https://github.com/sorintlab/stolon/pull/418))

examples/kubernetes/stolon-keeper.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
terminationGracePeriodSeconds: 10
2222
containers:
2323
- name: stolon-keeper
24-
image: sorintlab/stolon:master-pg10
24+
image: sorintlab/stolon:v0.11.0-pg10
2525
command:
2626
- "/bin/bash"
2727
- "-ec"

examples/kubernetes/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-pg10
18+
image: sorintlab/stolon:v0.11.0-pg10
1919
command:
2020
- "/bin/bash"
2121
- "-ec"

examples/kubernetes/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-pg10
18+
image: sorintlab/stolon:v0.11.0-pg10
1919
command:
2020
- "/bin/bash"
2121
- "-ec"

examples/swarm/docker-compose-pg.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ secrets:
88

99
services:
1010
sentinel:
11-
image: sorintlab/stolon:master-pg10
11+
image: sorintlab/stolon:v0.11.0-pg10
1212
command: gosu stolon stolon-sentinel --cluster-name stolon-cluster --store-backend=etcdv3 --store-endpoints http://etcd-00:2379,http://etcd-01:2379,http://etcd-02:2379 --log-level debug
1313
networks:
1414
- etcd_etcd
@@ -22,7 +22,7 @@ services:
2222
failure_action: pause
2323

2424
keeper1:
25-
image: sorintlab/stolon:master-pg10
25+
image: sorintlab/stolon:v0.11.0-pg10
2626
hostname: keeper1
2727
environment:
2828
- PGDATA=/var/lib/postgresql/data
@@ -41,7 +41,7 @@ services:
4141
# constraints: [node.labels.nodename == node1]
4242

4343
keeper2:
44-
image: sorintlab/stolon:master-pg10
44+
image: sorintlab/stolon:v0.11.0-pg10
4545
hostname: keeper2
4646
environment:
4747
- PGDATA=/var/lib/postgresql/data
@@ -59,7 +59,7 @@ services:
5959
# constraints: [node.labels.nodename == node2]
6060

6161
proxy:
62-
image: sorintlab/stolon:master-pg10
62+
image: sorintlab/stolon:v0.11.0-pg10
6363
command: gosu stolon stolon-proxy --listen-address 0.0.0.0 --cluster-name stolon-cluster --store-backend=etcdv3 --store-endpoints http://etcd-00:2379,http://etcd-01:2379,http://etcd-02:2379 --log-level info
6464
networks:
6565
- etcd_etcd

0 commit comments

Comments
 (0)