From a089ddaf51f07323fdeb1336530d941950371c66 Mon Sep 17 00:00:00 2001 From: akartasov Date: Wed, 7 Dec 2022 07:38:58 +0700 Subject: [PATCH] chore(engine): use extended Docker image with PostgreSQL 15 by default (#463) --- engine/configs/config.example.logical_generic.yml | 2 +- engine/configs/config.example.logical_rds_iam.yml | 2 +- engine/configs/config.example.physical_generic.yml | 2 +- engine/configs/config.example.physical_pgbackrest.yml | 2 +- engine/configs/config.example.physical_walg.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/engine/configs/config.example.logical_generic.yml b/engine/configs/config.example.logical_generic.yml index 6c5f7cae6..c302939da 100644 --- a/engine/configs/config.example.logical_generic.yml +++ b/engine/configs/config.example.logical_generic.yml @@ -109,7 +109,7 @@ databaseContainer: &db_container # It is possible to choose any custom or official Docker image that runs Postgres. Our Dockerfile # (See https://gitlab.com/postgres-ai/custom-images/-/tree/master/extended) # is recommended in case if customization is needed. - dockerImage: "postgresai/extended-postgres:14" + dockerImage: "postgresai/extended-postgres:15" # Container parameters, see # https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources diff --git a/engine/configs/config.example.logical_rds_iam.yml b/engine/configs/config.example.logical_rds_iam.yml index 6e6bc835a..39e6d2ab8 100644 --- a/engine/configs/config.example.logical_rds_iam.yml +++ b/engine/configs/config.example.logical_rds_iam.yml @@ -109,7 +109,7 @@ databaseContainer: &db_container # It is possible to choose any custom or official Docker image that runs Postgres. Our Dockerfile # (See https://gitlab.com/postgres-ai/custom-images/-/tree/master/extended) # is recommended in case if customization is needed. - dockerImage: "postgresai/extended-postgres:14" + dockerImage: "postgresai/extended-postgres:15" # Custom parameters for containers with PostgreSQL, see # https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources diff --git a/engine/configs/config.example.physical_generic.yml b/engine/configs/config.example.physical_generic.yml index c7993a571..6b74adb6a 100644 --- a/engine/configs/config.example.physical_generic.yml +++ b/engine/configs/config.example.physical_generic.yml @@ -109,7 +109,7 @@ databaseContainer: &db_container # Any custom or official Docker image that runs Postgres. Our Dockerfile # (See https://gitlab.com/postgres-ai/custom-images/-/tree/master/extended) # is recommended in case if customization is needed. - dockerImage: "postgresai/extended-postgres:14" + dockerImage: "postgresai/extended-postgres:15" # Custom parameters for containers with PostgreSQL, see # https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources diff --git a/engine/configs/config.example.physical_pgbackrest.yml b/engine/configs/config.example.physical_pgbackrest.yml index 2ff8c26b0..6aa4aa595 100644 --- a/engine/configs/config.example.physical_pgbackrest.yml +++ b/engine/configs/config.example.physical_pgbackrest.yml @@ -109,7 +109,7 @@ databaseContainer: &db_container # Any custom or official Docker image that runs Postgres. Our Dockerfile # (See https://gitlab.com/postgres-ai/custom-images/-/tree/master/extended) # is recommended in case if customization is needed. - dockerImage: "postgresai/extended-postgres:14" + dockerImage: "postgresai/extended-postgres:15" # Custom parameters for containers with PostgreSQL, see # https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources diff --git a/engine/configs/config.example.physical_walg.yml b/engine/configs/config.example.physical_walg.yml index 84c14d8fd..c2221cd2f 100644 --- a/engine/configs/config.example.physical_walg.yml +++ b/engine/configs/config.example.physical_walg.yml @@ -109,7 +109,7 @@ databaseContainer: &db_container # Any custom or official Docker image that runs Postgres. Our Dockerfile # (See https://gitlab.com/postgres-ai/custom-images/-/tree/master/extended) # is recommended in case if customization is needed. - dockerImage: "postgresai/extended-postgres:14" + dockerImage: "postgresai/extended-postgres:15" # Custom parameters for containers with PostgreSQL, see # https://docs.docker.com/engine/reference/run/#runtime-constraints-on-resources -- GitLab