diff --git a/docs/reference/operator_parameters.md b/docs/reference/operator_parameters.md
index a453e83438a6db6e4e323d22b07577a594f191f1..832524cab23d1de747da98fed8e2780a5ec8e7c2 100644
--- a/docs/reference/operator_parameters.md
+++ b/docs/reference/operator_parameters.md
@@ -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
diff --git a/pkg/util/config/config.go b/pkg/util/config/config.go
index 7ea9f9e29ec1a1c5babe09800cee462756877c2d..1c80b707b74b7170adc77c97a3c3a3fe046969b9 100644
--- a/pkg/util/config/config.go
+++ b/pkg/util/config/config.go
@@ -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"`
diff --git a/ui/Dockerfile b/ui/Dockerfile
index 56a25bf0d3ed1609008d9b0df96dba376b980144..30c2d77fae1ebd4ae18a41fa77bae6859bc7e2f1 100644
--- a/ui/Dockerfile
+++ b/ui/Dockerfile
@@ -1,4 +1,4 @@
-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