From c0f98413fd6f96ba1d03ecbb001d8789f547f08f Mon Sep 17 00:00:00 2001 From: Daniel Cosme Date: Tue, 5 May 2026 14:01:16 -0400 Subject: [PATCH] Update image catalog --- .../hydra/postgres/image-cataglog.yaml | 6 +----- pkg/postgres/postgres.go | 16 ++++++++-------- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/infrastructure/hydra/postgres/image-cataglog.yaml b/infrastructure/hydra/postgres/image-cataglog.yaml index 7884225..abec814 100644 --- a/infrastructure/hydra/postgres/image-cataglog.yaml +++ b/infrastructure/hydra/postgres/image-cataglog.yaml @@ -4,9 +4,5 @@ metadata: name: pg-minimal-trixie spec: images: - - extensions: - - image: - reference: ghcr.io/cloudnative-pg/pgvector:0.8.2-18-trixie - name: pgvector - image: ghcr.io/cloudnative-pg/postgresql:18.3-minimal-trixie + - image: ghcr.io/cloudnative-pg/postgresql:18.3-minimal-trixie major: 18 diff --git a/pkg/postgres/postgres.go b/pkg/postgres/postgres.go index 1026ca4..f2743f4 100644 --- a/pkg/postgres/postgres.go +++ b/pkg/postgres/postgres.go @@ -84,14 +84,14 @@ func ImageCatalog() pg.ImageCatalog { { Major: root.PG_VERSION_18, Image: root.PG_VERSION_18_IMAGE, - Extensions: []pg.ExtensionConfiguration{ - { - Name: "pgvector", - ImageVolumeSource: core.ImageVolumeSource{ - Reference: "ghcr.io/cloudnative-pg/pgvector:0.8.2-18-trixie", - }, - }, - }, + // Extensions: []pg.ExtensionConfiguration{ + // { + // Name: "pgvector", + // ImageVolumeSource: core.ImageVolumeSource{ + // Reference: "ghcr.io/cloudnative-pg/pgvector:0.8.2-18-trixie", + // }, + // }, + // }, }, }, },