File tree Expand file tree Collapse file tree 7 files changed +11
-7
lines changed Expand file tree Collapse file tree 7 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 69
69
type : boolean
70
70
enable_lazy_spilo_upgrade :
71
71
type : boolean
72
+ enable_pgversion_env_var :
73
+ type : boolean
72
74
enable_shm_volume :
73
75
type : boolean
74
76
etcd_host :
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ configGeneral:
22
22
# update only the statefulsets without immediately doing the rolling update
23
23
enable_lazy_spilo_upgrade : false
24
24
# set the PGVERSION env var instead of providing the version via postgresql.bin_dir in SPILO_CONFIGURATION
25
- enable_pgversion_env_var : " false"
25
+ enable_pgversion_env_var : false
26
26
# start any new database pod without limitations on shm memory
27
27
enable_shm_volume : true
28
28
# etcd connection string for Patroni. Empty uses K8s-native DCS.
@@ -270,7 +270,7 @@ configTeamsApi:
270
270
# operator watches for PostgresTeam CRs to assign additional teams and members to clusters
271
271
enable_postgres_team_crd : false
272
272
# toogle to create additional superuser teams from PostgresTeam CRs
273
- # enable_postgres_team_crd_superusers: " false"
273
+ # enable_postgres_team_crd_superusers: false
274
274
275
275
# toggle to grant superuser to team members created from the Teams API
276
276
enable_team_superuser : false
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ configAwsOrGcp:
217
217
# enable automatic migration on AWS from gp2 to gp3 volumes
218
218
enable_ebs_gp3_migration : " false"
219
219
# defines maximum volume size in GB until which auto migration happens
220
- # enable_ebs_gp3_migration_max_size: 1000
220
+ # enable_ebs_gp3_migration_max_size: " 1000"
221
221
222
222
# GCP credentials for setting the GOOGLE_APPLICATION_CREDNETIALS environment variable
223
223
# gcp_credentials: ""
Original file line number Diff line number Diff line change 15
15
# connection_pooler_default_cpu_request: "500m"
16
16
# connection_pooler_default_memory_limit: 100Mi
17
17
# connection_pooler_default_memory_request: 100Mi
18
- connection_pooler_image : " registry.opensource.zalan.do/acid/pgbouncer:master-11 "
18
+ connection_pooler_image : " registry.opensource.zalan.do/acid/pgbouncer:master-12 "
19
19
# connection_pooler_max_db_connections: 60
20
20
# connection_pooler_mode: "transaction"
21
21
# connection_pooler_number_of_instances: 2
@@ -37,10 +37,11 @@ data:
37
37
# enable_crd_validation: "true"
38
38
# enable_database_access: "true"
39
39
enable_ebs_gp3_migration : " false"
40
- # enable_ebs_gp3_migration_max_size: 1000
40
+ # enable_ebs_gp3_migration_max_size: " 1000"
41
41
# enable_init_containers: "true"
42
42
# enable_lazy_spilo_upgrade: "false"
43
43
enable_master_load_balancer : " false"
44
+ # enable_pgversion_env_var: "false"
44
45
# enable_pod_antiaffinity: "false"
45
46
# enable_pod_disruption_budget: "true"
46
47
# enable_postgres_team_crd: "false"
Original file line number Diff line number Diff line change 23
23
serviceAccountName : postgres-operator
24
24
containers :
25
25
- name : postgres-operator
26
- image : registry.opensource.zalan.do/acid/pgbouncer:master-11
26
+ image : registry.opensource.zalan.do/acid/pgbouncer:master-12
27
27
imagePullPolicy : IfNotPresent
28
28
resources :
29
29
requests :
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ configuration:
6
6
docker_image : registry.opensource.zalan.do/acid/spilo-12:1.6-p3
7
7
# enable_crd_validation: true
8
8
# enable_lazy_spilo_upgrade: false
9
+ # enable_pgversion_env_var: false
9
10
# enable_shm_volume: true
10
11
etcd_host : " "
11
12
# kubernetes_use_configmaps: false
Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ const (
14
14
ConnectionPoolerContainer = 0
15
15
ConnectionPoolerMaxDBConnections = 60
16
16
ConnectionPoolerMaxClientConnections = 10000
17
- ConnectionPoolerMinInstances = 2
17
+ ConnectionPoolerMinInstances = 1
18
18
)
You can’t perform that action at this time.
0 commit comments