Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
postgres-operator
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
zalando
postgres-operator
Commits
274b97cf
Commit
274b97cf
authored
1 year ago
by
Felix Kunde
Browse files
Options
Downloads
Patches
Plain Diff
change internal default for pooler image
parent
84c61bda
Branches
arm-pooler
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/reference/operator_parameters.md
+1
-1
1 addition, 1 deletion
docs/reference/operator_parameters.md
pkg/util/config/config.go
+1
-1
1 addition, 1 deletion
pkg/util/config/config.go
ui/Dockerfile
+1
-1
1 addition, 1 deletion
ui/Dockerfile
with
3 additions
and
3 deletions
docs/reference/operator_parameters.md
+
1
−
1
View file @
274b97cf
...
...
@@ -1012,7 +1012,7 @@ operator being able to provide some reasonable defaults.
*
**connection_pooler_image**
Docker image to use for connection pooler deployment.
Default: "
registry.opensource
.zalan
.
do/acid/pgbouncer"
Default: "
container-registry
.zalando
.net
/acid/pgbouncer"
*
**connection_pooler_max_db_connections**
How many connections the pooler can max hold. This value is divided among the
...
...
This diff is collapsed.
Click to expand it.
pkg/util/config/config.go
+
1
−
1
View file @
274b97cf
...
...
@@ -152,7 +152,7 @@ type ConnectionPooler struct {
NumberOfInstances
*
int32
`name:"connection_pooler_number_of_instances" default:"2"`
Schema
string
`name:"connection_pooler_schema" default:"pooler"`
User
string
`name:"connection_pooler_user" default:"pooler"`
Image
string
`name:"connection_pooler_image" default:"
registry.opensource
.zalan
.
do/acid/pgbouncer"`
Image
string
`name:"connection_pooler_image" default:"
container-registry
.zalando
.net
/acid/pgbouncer"`
Mode
string
`name:"connection_pooler_mode" default:"transaction"`
MaxDBConnections
*
int32
`name:"connection_pooler_max_db_connections" default:"60"`
ConnectionPoolerDefaultCPURequest
string
`name:"connection_pooler_default_cpu_request"`
...
...
This diff is collapsed.
Click to expand it.
ui/Dockerfile
+
1
−
1
View file @
274b97cf
ARG
BASE_IMAGE=registry.opensource.zalan.do/library/alpine-3:latest
ARG
BASE_IMAGE=registry.opensource.zalan.do/library/alpine-3
.15
:latest
ARG
NODE_IMAGE=node:14.21.2-alpine
FROM
$NODE_IMAGE
AS
build
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment