File tree Expand file tree Collapse file tree 3 files changed +21
-22
lines changed Expand file tree Collapse file tree 3 files changed +21
-22
lines changed 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.1.0
5
+ version : 0.1.1
6
6
appVersion : 5.0.3
Original file line number Diff line number Diff line change 1
1
apiVersion : postgres-operator.crunchydata.com/v1beta1
2
2
kind : PostgresCluster
3
3
metadata :
4
- name : {{ .Values.name }}
4
+ name : {{ required "You must give your Postgres cluster a name" .Values.name }}
5
5
spec :
6
- image : {{ . Values.postgres }}
7
- postgresVersion : {{ .Values.postgresVersion }}
6
+ image : {{ default "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1" . Values.postgres | quote }}
7
+ postgresVersion : {{ default 13 .Values.postgresVersion }}
8
8
instances :
9
9
- name : instance1
10
10
dataVolumeClaimSpec :
15
15
storage : 1Gi
16
16
backups :
17
17
pgbackrest :
18
- image : {{ . Values.pgBackRest}}
18
+ image : {{ default "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35-0" . Values.pgBackRest | quote }}
19
19
repos :
20
20
- name : repo1
21
21
volume :
25
25
resources :
26
26
requests :
27
27
storage : 1Gi
28
- - name : repo2
29
- volume :
30
- volumeClaimSpec :
31
- accessModes :
32
- - " ReadWriteOnce"
33
- resources :
34
- requests :
35
- storage : 1Gi
36
28
proxy :
37
29
pgBouncer :
38
- image : {{ . Values.pgBouncer}}
30
+ image : {{ default "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-3" . Values.pgBouncer | quote }}
Original file line number Diff line number Diff line change 2
2
# Cluster name
3
3
name : hippo
4
4
5
- # PostgreSQL Version
6
- # Version should match version defined in PostgreSQL images
7
- postgresVersion : 13
8
-
9
- # Images
10
- postgres : registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
11
- pgBackRest : registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35-0
12
- pgBouncer : registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-3
5
+ # postgresVersion should match the version of Potsgres you are deploying from
6
+ # the image. This defaults to the below value.
7
+ # postgresVersion: 13
8
+
9
+ # postgres can be a Postgres or GIS-enabled Postgres image. This defaults to the
10
+ # below value
11
+ # postgres: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
12
+
13
+ # pgBackRest is the pgBackRest backup utility image. This defaults to the below
14
+ # value
15
+ # pgBackRest: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35-0
16
+
17
+ # pgBouncer is the image for the PgBouncer connection pooler. This defaults to
18
+ # the below value
19
+ # pgBouncer: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-3
You can’t perform that action at this time.
0 commit comments