Skip to content

Commit 3962e71

Browse files
authored
bump to v1.6.1 (zalando#1367)
* bump tp v1.6.1 * update UI chart * improve docs and manifest examples * use Spilo 2.0-r4 and update docs * minor updates to admin docs
1 parent cee4bf8 commit 3962e71

25 files changed

+318
-174
lines changed

Diff for: .github/ISSUE_TEMPLATE/postgres-operator-issue-template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ assignees: ''
99

1010
Please, answer some short questions which should help us to understand your problem / question better?
1111

12-
- **Which image of the operator are you using?** e.g. registry.opensource.zalan.do/acid/postgres-operator:v1.6.0
12+
- **Which image of the operator are you using?** e.g. registry.opensource.zalan.do/acid/postgres-operator:v1.6.1
1313
- **Where do you run it - cloud or metal? Kubernetes or OpenShift?** [AWS K8s | GCP ... | Bare Metal K8s]
1414
- **Are you running Postgres Operator in production?** [yes | no]
1515
- **Type of issue?** [Bug report, question, feature request, etc.]

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<img src="docs/diagrams/logo.png" width="200">
88

99
The Postgres Operator delivers an easy to run highly-available [PostgreSQL](https://www.postgresql.org/)
10-
clusters on Kubernetes (K8s) powered by [Patroni](https://github.com/zalando/spilo).
10+
clusters on Kubernetes (K8s) powered by [Patroni](https://github.com/zalando/patroni).
1111
It is configured only through Postgres manifests (CRDs) to ease integration into automated CI/CD
1212
pipelines with no access to Kubernetes API directly, promoting infrastructure as code vs manual operations.
1313

@@ -24,7 +24,7 @@ pipelines with no access to Kubernetes API directly, promoting infrastructure as
2424
* Support for custom TLS certificates
2525
* UI to create and edit Postgres cluster manifests
2626
* Works well on Amazon AWS, Google Cloud, OpenShift and locally on Kind
27-
* Base support for AWS EBS gp3 migration (iops, throughput pending)
27+
* Support for AWS EBS gp3 migration
2828

2929
### PostgreSQL features
3030

@@ -65,7 +65,7 @@ We introduce the major version into the backup path to smoothen the [major versi
6565
The new operator configuration can set a compatibility flag *enable_spilo_wal_path_compat* to make Spilo look for wal segments in the current path but also old format paths.
6666
This comes at potential performance costs and should be disabled after a few days.
6767

68-
The new Spilo 13 image is: `registry.opensource.zalan.do/acid/spilo-13:2.0-p2`
68+
The newest Spilo 13 image is: `registry.opensource.zalan.do/acid/spilo-13:2.0-p4`
6969

7070
The last Spilo 12 image is: `registry.opensource.zalan.do/acid/spilo-12:1.6-p5`
7171

Diff for: charts/postgres-operator-ui/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: postgres-operator-ui
3-
version: 1.6.0
4-
appVersion: 1.6.0
3+
version: 1.6.1
4+
appVersion: 1.6.1
55
home: https://github.com/zalando/postgres-operator
66
description: Postgres Operator UI provides a graphical interface for a convenient database-as-a-service user experience
77
keywords:

Diff for: charts/postgres-operator-ui/index.yaml

+9-11
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ apiVersion: v1
22
entries:
33
postgres-operator-ui:
44
- apiVersion: v1
5-
appVersion: 1.6.0
6-
created: "2020-12-18T14:19:25.464717041+01:00"
7-
description: Postgres Operator UI provides a graphical interface for a convenient
8-
database-as-a-service user experience
9-
digest: d7813a235dd1015377c38fd5a14e7679a411c7340a25cfcf5f5294405f9a2eb2
5+
appVersion: 1.6.1
6+
created: "2021-02-16T12:16:51.963793476+01:00"
7+
description: Postgres Operator UI provides a graphical interface for a convenient database-as-a-service user experience
8+
digest: 3d321352f2f1e7bb7450aa8876e3d818aa9f9da9bd4250507386f0490f2c1969
109
home: https://github.com/zalando/postgres-operator
1110
keywords:
1211
- postgres
@@ -22,13 +21,12 @@ entries:
2221
sources:
2322
- https://github.com/zalando/postgres-operator
2423
urls:
25-
- postgres-operator-ui-1.6.0.tgz
26-
version: 1.6.0
24+
- postgres-operator-ui-1.6.1.tgz
25+
version: 1.6.1
2726
- apiVersion: v1
2827
appVersion: 1.5.0
29-
created: "2020-12-18T14:19:25.464015993+01:00"
30-
description: Postgres Operator UI provides a graphical interface for a convenient
31-
database-as-a-service user experience
28+
created: "2021-02-16T12:16:51.96319758+01:00"
29+
description: Postgres Operator UI provides a graphical interface for a convenient database-as-a-service user experience
3230
digest: c91ea39e6d51d57f4048fb1b6ec53b40823f2690eb88e4e4f1a036367b9fdd61
3331
home: https://github.com/zalando/postgres-operator
3432
keywords:
@@ -47,4 +45,4 @@ entries:
4745
urls:
4846
- postgres-operator-ui-1.5.0.tgz
4947
version: 1.5.0
50-
generated: "2020-12-18T14:19:25.463104102+01:00"
48+
generated: "2021-02-16T12:16:51.962463462+01:00"
-3.79 KB
Binary file not shown.
3.79 KB
Binary file not shown.

Diff for: charts/postgres-operator-ui/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replicaCount: 1
88
image:
99
registry: registry.opensource.zalan.do
1010
repository: acid/postgres-operator-ui
11-
tag: v1.6.0
11+
tag: v1.6.1
1212
pullPolicy: "IfNotPresent"
1313

1414
# Optionally specify an array of imagePullSecrets.

Diff for: charts/postgres-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: postgres-operator
3-
version: 1.6.0
4-
appVersion: 1.6.0
3+
version: 1.6.1
4+
appVersion: 1.6.1
55
home: https://github.com/zalando/postgres-operator
66
description: Postgres Operator creates and manages PostgreSQL clusters running in Kubernetes
77
keywords:

Diff for: charts/postgres-operator/crds/operatorconfigurations.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ spec:
6565
properties:
6666
docker_image:
6767
type: string
68-
default: "registry.opensource.zalan.do/acid/spilo-13:2.0-p2"
68+
default: "registry.opensource.zalan.do/acid/spilo-13:2.0-p4"
6969
enable_crd_validation:
7070
type: boolean
7171
default: true
@@ -382,7 +382,7 @@ spec:
382382
properties:
383383
logical_backup_docker_image:
384384
type: string
385-
default: "registry.opensource.zalan.do/acid/logical-backup:v1.6.0"
385+
default: "registry.opensource.zalan.do/acid/logical-backup:v1.6.1"
386386
logical_backup_google_application_credentials:
387387
type: string
388388
logical_backup_job_prefix:
@@ -511,7 +511,7 @@ spec:
511511
default: "pooler"
512512
connection_pooler_image:
513513
type: string
514-
default: "registry.opensource.zalan.do/acid/pgbouncer:master-12"
514+
default: "registry.opensource.zalan.do/acid/pgbouncer:master-14"
515515
connection_pooler_max_db_connections:
516516
type: integer
517517
default: 60

Diff for: charts/postgres-operator/index.yaml

+9-11
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ apiVersion: v1
22
entries:
33
postgres-operator:
44
- apiVersion: v1
5-
appVersion: 1.6.0
6-
created: "2020-12-17T16:16:25.639708821+01:00"
7-
description: Postgres Operator creates and manages PostgreSQL clusters running
8-
in Kubernetes
9-
digest: 2f5f527bae0a22b02f2f7b1e2352665cecf489a990e18212444fa34450b97604
5+
appVersion: 1.6.1
6+
created: "2021-02-16T11:49:43.295433402+01:00"
7+
description: Postgres Operator creates and manages PostgreSQL clusters running in Kubernetes
8+
digest: ce9cfc0d4838edf307b690b942bd4e1ea73c3b93bb5552ae8ecd2952d55383ea
109
home: https://github.com/zalando/postgres-operator
1110
keywords:
1211
- postgres
@@ -21,13 +20,12 @@ entries:
2120
sources:
2221
- https://github.com/zalando/postgres-operator
2322
urls:
24-
- postgres-operator-1.6.0.tgz
25-
version: 1.6.0
23+
- postgres-operator-1.6.1.tgz
24+
version: 1.6.1
2625
- apiVersion: v1
2726
appVersion: 1.5.0
28-
created: "2020-12-17T16:16:25.637262877+01:00"
29-
description: Postgres Operator creates and manages PostgreSQL clusters running
30-
in Kubernetes
27+
created: "2021-02-16T11:49:43.292890391+01:00"
28+
description: Postgres Operator creates and manages PostgreSQL clusters running in Kubernetes
3129
digest: 198351d5db52e65cdf383d6f3e1745d91ac1e2a01121f8476f8b1be728b09531
3230
home: https://github.com/zalando/postgres-operator
3331
keywords:
@@ -45,4 +43,4 @@ entries:
4543
urls:
4644
- postgres-operator-1.5.0.tgz
4745
version: 1.5.0
48-
generated: "2020-12-17T16:16:25.635647131+01:00"
46+
generated: "2021-02-16T11:49:43.291315248+01:00"

Diff for: charts/postgres-operator/postgres-operator-1.6.0.tgz

-18.6 KB
Binary file not shown.

Diff for: charts/postgres-operator/postgres-operator-1.6.1.tgz

18.8 KB
Binary file not shown.

Diff for: charts/postgres-operator/values-crd.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
22
registry: registry.opensource.zalan.do
33
repository: acid/postgres-operator
4-
tag: v1.6.0
4+
tag: v1.6.1
55
pullPolicy: "IfNotPresent"
66

77
# Optionally specify an array of imagePullSecrets.
@@ -32,7 +32,7 @@ configGeneral:
3232
# Select if setup uses endpoints (default), or configmaps to manage leader (DCS=k8s)
3333
# kubernetes_use_configmaps: false
3434
# Spilo docker image
35-
docker_image: registry.opensource.zalan.do/acid/spilo-13:2.0-p2
35+
docker_image: registry.opensource.zalan.do/acid/spilo-13:2.0-p4
3636
# max number of instances in Postgres cluster. -1 = no limit
3737
min_instances: -1
3838
# min number of instances in Postgres cluster. -1 = no limit
@@ -252,7 +252,7 @@ configAwsOrGcp:
252252
# configure K8s cron job managed by the operator
253253
configLogicalBackup:
254254
# image for pods of the logical backup job (example runs pg_dumpall)
255-
logical_backup_docker_image: "registry.opensource.zalan.do/acid/logical-backup:v1.6.0"
255+
logical_backup_docker_image: "registry.opensource.zalan.do/acid/logical-backup:v1.6.1"
256256
# path of google cloud service account json file
257257
# logical_backup_google_application_credentials: ""
258258

@@ -315,7 +315,7 @@ configConnectionPooler:
315315
# db user for pooler to use
316316
connection_pooler_user: "pooler"
317317
# docker image
318-
connection_pooler_image: "registry.opensource.zalan.do/acid/pgbouncer:master-9"
318+
connection_pooler_image: "registry.opensource.zalan.do/acid/pgbouncer:master-14"
319319
# max db connections the pooler should hold
320320
connection_pooler_max_db_connections: 60
321321
# default pooling mode

Diff for: charts/postgres-operator/values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image:
22
registry: registry.opensource.zalan.do
33
repository: acid/postgres-operator
4-
tag: v1.6.0
4+
tag: v1.6.1
55
pullPolicy: "IfNotPresent"
66

77
# Optionally specify an array of imagePullSecrets.
@@ -35,7 +35,7 @@ configGeneral:
3535
# Select if setup uses endpoints (default), or configmaps to manage leader (DCS=k8s)
3636
# kubernetes_use_configmaps: "false"
3737
# Spilo docker image
38-
docker_image: registry.opensource.zalan.do/acid/spilo-13:2.0-p2
38+
docker_image: registry.opensource.zalan.do/acid/spilo-13:2.0-p4
3939
# max number of instances in Postgres cluster. -1 = no limit
4040
min_instances: "-1"
4141
# min number of instances in Postgres cluster. -1 = no limit
@@ -242,7 +242,7 @@ configAwsOrGcp:
242242
# configure K8s cron job managed by the operator
243243
configLogicalBackup:
244244
# image for pods of the logical backup job (example runs pg_dumpall)
245-
logical_backup_docker_image: "registry.opensource.zalan.do/acid/logical-backup:v1.6.0"
245+
logical_backup_docker_image: "registry.opensource.zalan.do/acid/logical-backup:v1.6.1"
246246
# path of google cloud service account json file
247247
# logical_backup_google_application_credentials: ""
248248

@@ -309,7 +309,7 @@ configConnectionPooler:
309309
# db user for pooler to use
310310
connection_pooler_user: "pooler"
311311
# docker image
312-
connection_pooler_image: "registry.opensource.zalan.do/acid/pgbouncer:master-9"
312+
connection_pooler_image: "registry.opensource.zalan.do/acid/pgbouncer:master-14"
313313
# max db connections the pooler should hold
314314
connection_pooler_max_db_connections: "60"
315315
# default pooling mode

0 commit comments

Comments
 (0)