Skip to content

Commit b24da32

Browse files
authored
bump version to 1.4.0 + some polishing (#839)
* bump version to 1.4.0 + some polishing * align version for UI chart * update user docs to warn for standby replicas * minor log message changes for RBAC resources
1 parent fb9ef11 commit b24da32

File tree

17 files changed

+102
-35
lines changed

17 files changed

+102
-35
lines changed

charts/postgres-operator-ui/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: postgres-operator-ui
3-
version: 0.1.0
4-
appVersion: 1.3.0
3+
version: 1.4.0
4+
appVersion: 1.4.0
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:
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
apiVersion: v1
2+
entries:
3+
postgres-operator-ui:
4+
- apiVersion: v1
5+
appVersion: 1.4.0
6+
created: "2020-02-24T15:32:47.610967635+01:00"
7+
description: Postgres Operator UI provides a graphical interface for a convenient
8+
database-as-a-service user experience
9+
digest: 00e0eff7056d56467cd5c975657fbb76c8d01accd25a4b7aca81bc42aeac961d
10+
home: https://github.com/zalando/postgres-operator
11+
keywords:
12+
- postgres
13+
- operator
14+
- ui
15+
- cloud-native
16+
- patroni
17+
- spilo
18+
maintainers:
19+
20+
name: Zalando
21+
22+
name: siku4
23+
name: postgres-operator-ui
24+
sources:
25+
- https://github.com/zalando/postgres-operator
26+
urls:
27+
- postgres-operator-ui-1.4.0.tgz
28+
version: 1.4.0
29+
generated: "2020-02-24T15:32:47.610348278+01:00"
3.43 KB
Binary file not shown.

charts/postgres-operator-ui/values.yaml

Lines changed: 1 addition & 1 deletion
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.2.0
11+
tag: v1.4.0
1212
pullPolicy: "IfNotPresent"
1313

1414
rbac:

charts/postgres-operator/Chart.yaml

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

charts/postgres-operator/index.yaml

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,31 @@
11
apiVersion: v1
22
entries:
33
postgres-operator:
4+
- apiVersion: v1
5+
appVersion: 1.4.0
6+
created: "2020-02-20T17:39:25.443276193+01:00"
7+
description: Postgres Operator creates and manages PostgreSQL clusters running
8+
in Kubernetes
9+
digest: b93ccde5581deb8ed0857136b8ce74ca3f1b7240438fa4415f705764a1300bed
10+
home: https://github.com/zalando/postgres-operator
11+
keywords:
12+
- postgres
13+
- operator
14+
- cloud-native
15+
- patroni
16+
- spilo
17+
maintainers:
18+
19+
name: Zalando
20+
name: postgres-operator
21+
sources:
22+
- https://github.com/zalando/postgres-operator
23+
urls:
24+
- postgres-operator-1.4.0.tgz
25+
version: 1.4.0
426
- apiVersion: v1
527
appVersion: 1.3.0
6-
created: "2019-12-17T12:58:49.477140129+01:00"
28+
created: "2020-02-20T17:39:25.441532163+01:00"
729
description: Postgres Operator creates and manages PostgreSQL clusters running
830
in Kubernetes
931
digest: 7e788fd37daec76a01f6d6f9fe5be5b54f5035e4eba0041e80a760d656537325
@@ -25,7 +47,7 @@ entries:
2547
version: 1.3.0
2648
- apiVersion: v1
2749
appVersion: 1.2.0
28-
created: "2019-12-17T12:58:49.475844233+01:00"
50+
created: "2020-02-20T17:39:25.440278302+01:00"
2951
description: Postgres Operator creates and manages PostgreSQL clusters running
3052
in Kubernetes
3153
digest: d10710c7cf19f4e266e7704f5d1e98dcfc61bee3919522326c35c22ca7d2f2bf
@@ -47,4 +69,4 @@ entries:
4769
urls:
4870
- postgres-operator-1.2.0.tgz
4971
version: 1.2.0
50-
generated: "2019-12-17T12:58:49.474719294+01:00"
72+
generated: "2020-02-20T17:39:25.439168098+01:00"
41.2 KB
Binary file not shown.

charts/postgres-operator/templates/clusterrole.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ rules:
6363
- secrets
6464
verbs:
6565
- create
66-
- update
6766
- delete
6867
- get
68+
- update
6969
# to check nodes for node readiness label
7070
- apiGroups:
7171
- ""
@@ -102,9 +102,9 @@ rules:
102102
- delete
103103
- get
104104
- list
105-
- watch
106-
- update
107105
- patch
106+
- update
107+
- watch
108108
# to resize the filesystem in Spilo pods when increasing volume size
109109
- apiGroups:
110110
- ""

charts/postgres-operator/values-crd.yaml

Lines changed: 7 additions & 1 deletion
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.3.1
4+
tag: v1.4.0
55
pullPolicy: "IfNotPresent"
66

77
# Optionally specify an array of imagePullSecrets.
@@ -100,8 +100,14 @@ configKubernetes:
100100
pod_management_policy: "ordered_ready"
101101
# label assigned to the Postgres pods (and services/endpoints)
102102
pod_role_label: spilo-role
103+
# service account definition as JSON/YAML string to be used by postgres cluster pods
104+
# pod_service_account_definition: ""
105+
103106
# name of service account to be used by postgres cluster pods
104107
pod_service_account_name: "postgres-pod"
108+
# role binding definition as JSON/YAML string to be used by pod service account
109+
# pod_service_account_role_binding_definition: ""
110+
105111
# Postgres pods are terminated forcefully after this timeout
106112
pod_terminate_grace_period: 5m
107113
# template for database user secrets generated by the operator

charts/postgres-operator/values.yaml

Lines changed: 7 additions & 1 deletion
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.3.1
4+
tag: v1.4.0
55
pullPolicy: "IfNotPresent"
66

77
# Optionally specify an array of imagePullSecrets.
@@ -93,8 +93,14 @@ configKubernetes:
9393
pod_management_policy: "ordered_ready"
9494
# label assigned to the Postgres pods (and services/endpoints)
9595
pod_role_label: spilo-role
96+
# service account definition as JSON/YAML string to be used by postgres cluster pods
97+
# pod_service_account_definition: ""
98+
9699
# name of service account to be used by postgres cluster pods
97100
pod_service_account_name: "postgres-pod"
101+
# role binding definition as JSON/YAML string to be used by pod service account
102+
# pod_service_account_role_binding_definition: ""
103+
98104
# Postgres pods are terminated forcefully after this timeout
99105
pod_terminate_grace_period: 5m
100106
# template for database user secrets generated by the operator

0 commit comments

Comments
 (0)