Skip to content

Commit

Permalink
Release v0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sgotti committed Dec 3, 2019
1 parent a13d1d9 commit 6d95a34
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
### v0.15.0

#### New features

* Support PostgreSQL 12 [#727](https://github.com/sorintlab/stolon/pull/727))
* Added wal-g examples [#726](https://github.com/sorintlab/stolon/pull/726))
* Stolonctl spec: don't show null clusterspec options [#736](https://github.com/sorintlab/stolon/pull/736))
* Prevent stolonctl init with empty clusterspec file [#702](https://github.com/sorintlab/stolon/pull/702))

#### Bug Fixes
* Do pg_rewind only against primary instance [#698](https://github.com/sorintlab/stolon/pull/698))

and [many other](https://github.com/sorintlab/stolon/milestone/14) changes.

A big Thank You to everybody who contributed to this release!


### v0.14.0

#### New features
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/stolon-keeper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
terminationGracePeriodSeconds: 10
containers:
- name: stolon-keeper
image: sorintlab/stolon:master-pg10
image: sorintlab/stolon:v0.15.0-pg10
command:
- "/bin/bash"
- "-ec"
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/stolon-proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
spec:
containers:
- name: stolon-proxy
image: sorintlab/stolon:master-pg10
image: sorintlab/stolon:v0.15.0-pg10
command:
- "/bin/bash"
- "-ec"
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/stolon-sentinel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
spec:
containers:
- name: stolon-sentinel
image: sorintlab/stolon:master-pg10
image: sorintlab/stolon:v0.15.0-pg10
command:
- "/bin/bash"
- "-ec"
Expand Down
8 changes: 4 additions & 4 deletions examples/swarm/docker-compose-pg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ secrets:

services:
sentinel:
image: sorintlab/stolon:master-pg10
image: sorintlab/stolon:v0.15.0-pg10
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
networks:
- etcd_etcd
Expand All @@ -22,7 +22,7 @@ services:
failure_action: pause

keeper1:
image: sorintlab/stolon:master-pg10
image: sorintlab/stolon:v0.15.0-pg10
hostname: keeper1
environment:
- PGDATA=/var/lib/postgresql/data
Expand All @@ -41,7 +41,7 @@ services:
# constraints: [node.labels.nodename == node1]

keeper2:
image: sorintlab/stolon:master-pg10
image: sorintlab/stolon:v0.15.0-pg10
hostname: keeper2
environment:
- PGDATA=/var/lib/postgresql/data
Expand All @@ -59,7 +59,7 @@ services:
# constraints: [node.labels.nodename == node2]

proxy:
image: sorintlab/stolon:master-pg10
image: sorintlab/stolon:v0.15.0-pg10
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
networks:
- etcd_etcd
Expand Down

0 comments on commit 6d95a34

Please sign in to comment.