File tree 15 files changed +49
-38
lines changed
15 files changed +49
-38
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ name: pgo
3
3
description : A Helm chart for Kubernetes
4
4
type : application
5
5
version : 0.2.1
6
- appVersion : 5.0.3
6
+ appVersion : 5.0.4
Original file line number Diff line number Diff line change @@ -3394,6 +3394,8 @@ spec:
3394
3394
type : object
3395
3395
type : array
3396
3396
instances :
3397
+ description : Specifies one or more sets of PostgreSQL pods that replicate
3398
+ data for this cluster.
3397
3399
items :
3398
3400
properties :
3399
3401
affinity :
@@ -4172,13 +4174,18 @@ spec:
4172
4174
type : object
4173
4175
name :
4174
4176
default : " "
4177
+ description : Name that associates this set of PostgreSQL pods.
4178
+ This field is optional when only one instance set is defined.
4179
+ Each instance set in a cluster must have a unique name.
4180
+ pattern : ^([a-z0-9]([-a-z0-9]*[a-z0-9])?)?$
4175
4181
type : string
4176
4182
priorityClassName :
4177
4183
description : ' Priority class name for the PostgreSQL pod. Changing
4178
4184
this value causes PostgreSQL to restart. More info: https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/'
4179
4185
type : string
4180
4186
replicas :
4181
4187
default : 1
4188
+ description : Number of desired PostgreSQL pods.
4182
4189
format : int32
4183
4190
minimum : 1
4184
4191
type : integer
Original file line number Diff line number Diff line change 1
1
---
2
2
# # Provide image repository and tag
3
3
image :
4
- image : registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi8-5.0.3 -0
4
+ image : registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi8-5.0.4 -0
5
5
6
6
relatedImages :
7
7
postgres_14 :
8
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.0 -0
8
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.1 -0
9
9
postgres_14_gis_3.1 :
10
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-14.0 -3.1-0
10
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-14.1 -3.1-0
11
11
postgres_13 :
12
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
12
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
13
13
postgres_13_gis_3.1 :
14
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-13.4 -3.1-1
14
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-13.5 -3.1-0
15
15
pgbackrest :
16
- image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35 -0
16
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36 -0
17
17
pgbouncer :
18
- image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-3
18
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-0
19
19
pgexporter :
20
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.3 -0
20
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.4 -0
21
21
22
22
# # Install in default or single namespace mode
23
23
singleNamespace : false
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
2
2
name : postgrescluster
3
3
description : A Helm chart for Kubernetes
4
4
type : application
5
- version : 0.2.0
6
- appVersion : 5.0.3
5
+ version : 0.2.1
6
+ appVersion : 5.0.4
Original file line number Diff line number Diff line change 47
47
# below value. "postgresVersion" needs to match the version of Postgres that is
48
48
# used here. If using the GIS-enabled Postgres image, you need to ensure
49
49
# "postGISVersion" matches the version of PostGIS used.
50
- # imagePostgres: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
50
+ # imagePostgres: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
51
51
52
52
# imagePgBackRest is the pgBackRest backup utility image. This defaults to the
53
53
# below value.
54
- # imagePgBackRest: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35 -0
54
+ # imagePgBackRest: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36 -0
55
55
56
56
# imagePgBouncer is the image for the PgBouncer connection pooler. This defaults
57
57
# to the below value.
58
- # imagePgBouncer: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-3
58
+ # imagePgBouncer: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-0
59
59
60
60
# imageExporter is the image name for the exporter used as a part of monitoring.
61
61
# This defaults to the value below.
62
- # imageExporter: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.3 -0
62
+ # imageExporter: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.4 -0
63
63
64
64
# ##########################
65
65
# Basic Postgres Settings #
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: PostgresCluster
3
3
metadata :
4
4
name : hippo-azure
5
5
spec :
6
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
6
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
7
7
postgresVersion : 13
8
8
instances :
9
9
- dataVolumeClaimSpec :
14
14
storage : 1Gi
15
15
backups :
16
16
pgbackrest :
17
- image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35 -0
17
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36 -0
18
18
configuration :
19
19
- secret :
20
20
name : pgo-azure-creds
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: PostgresCluster
3
3
metadata :
4
4
name : hippo
5
5
spec :
6
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
6
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
7
7
postgresVersion : 13
8
8
customReplicationTLSSecret :
9
9
name : hippo-repl-tls
19
19
storage : 1Gi
20
20
backups :
21
21
pgbackrest :
22
- image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35 -0
22
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36 -0
23
23
repos :
24
24
- name : repo1
25
25
volume :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: PostgresCluster
3
3
metadata :
4
4
name : hippo-gcs
5
5
spec :
6
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
6
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
7
7
postgresVersion : 13
8
8
instances :
9
9
- dataVolumeClaimSpec :
14
14
storage : 1Gi
15
15
backups :
16
16
pgbackrest :
17
- image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35 -0
17
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36 -0
18
18
configuration :
19
19
- secret :
20
20
name : pgo-gcs-creds
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: PostgresCluster
3
3
metadata :
4
4
name : hippo-ha
5
5
spec :
6
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
6
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
7
7
postgresVersion : 13
8
8
instances :
9
9
- name : pgha1
26
26
postgres-operator.crunchydata.com/instance-set : pgha1
27
27
backups :
28
28
pgbackrest :
29
- image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35 -0
29
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36 -0
30
30
repos :
31
31
- name : repo1
32
32
volume :
38
38
storage : 1Gi
39
39
proxy :
40
40
pgBouncer :
41
- image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-3
41
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-0
42
42
replicas : 2
43
43
affinity :
44
44
podAntiAffinity :
Original file line number Diff line number Diff line change 11
11
images :
12
12
- name : postgres-operator
13
13
newName : registry.developers.crunchydata.com/crunchydata/postgres-operator
14
- newTag : ubi8-5.0.3 -0
14
+ newTag : ubi8-5.0.4 -0
Original file line number Diff line number Diff line change @@ -14,16 +14,20 @@ spec:
14
14
env :
15
15
- name : CRUNCHY_DEBUG
16
16
value : " true"
17
+ - name : RELATED_IMAGE_POSTGRES_14
18
+ value : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.1-0
19
+ - name : RELATED_IMAGE_POSTGRES_14_GIS_3.1
20
+ value : registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-14.1-3.1-0
17
21
- name : RELATED_IMAGE_POSTGRES_13
18
- value : " registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1 "
22
+ value : " registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0 "
19
23
- name : RELATED_IMAGE_POSTGRES_13_GIS_3.1
20
- value : " registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-13.4 -3.1-1 "
24
+ value : " registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-13.5 -3.1-0 "
21
25
- name : RELATED_IMAGE_PGBACKREST
22
- value : " registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35 -0"
26
+ value : " registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36 -0"
23
27
- name : RELATED_IMAGE_PGBOUNCER
24
- value : " registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-3 "
28
+ value : " registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-0 "
25
29
- name : RELATED_IMAGE_PGEXPORTER
26
- value : " registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.3 -0"
30
+ value : " registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.4 -0"
27
31
securityContext :
28
32
allowPrivilegeEscalation : false
29
33
readOnlyRootFilesystem : true
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: PostgresCluster
3
3
metadata :
4
4
name : keycloakdb
5
5
spec :
6
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
6
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
7
7
postgresVersion : 13
8
8
instances :
9
9
- replicas : 2
25
25
postgres-operator.crunchydata.com/instance-set : " 00"
26
26
backups :
27
27
pgbackrest :
28
- image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35 -0
28
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36 -0
29
29
repos :
30
30
- name : repo1
31
31
volume :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: PostgresCluster
3
3
metadata :
4
4
name : hippo-multi-repo
5
5
spec :
6
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
6
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
7
7
postgresVersion : 13
8
8
instances :
9
9
- dataVolumeClaimSpec :
14
14
storage : 1Gi
15
15
backups :
16
16
pgbackrest :
17
- image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35 -0
17
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36 -0
18
18
configuration :
19
19
- secret :
20
20
name : pgo-multi-repo-creds
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: PostgresCluster
3
3
metadata :
4
4
name : hippo
5
5
spec :
6
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
6
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
7
7
postgresVersion : 13
8
8
instances :
9
9
- name : instance1
15
15
storage : 1Gi
16
16
backups :
17
17
pgbackrest :
18
- image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35 -0
18
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36 -0
19
19
repos :
20
20
- name : repo1
21
21
volume :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: PostgresCluster
3
3
metadata :
4
4
name : hippo-s3
5
5
spec :
6
- image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
6
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
7
7
postgresVersion : 13
8
8
instances :
9
9
- dataVolumeClaimSpec :
14
14
storage : 1Gi
15
15
backups :
16
16
pgbackrest :
17
- image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35 -0
17
+ image : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36 -0
18
18
configuration :
19
19
- secret :
20
20
name : pgo-s3-creds
You can’t perform that action at this time.
0 commit comments