diff --git a/infrastructure/hydra/postgres/immich-db.yaml b/infrastructure/hydra/postgres/immich-db.yaml deleted file mode 100644 index dd02848..0000000 --- a/infrastructure/hydra/postgres/immich-db.yaml +++ /dev/null @@ -1,14 +0,0 @@ -apiVersion: postgresql.cnpg.io/v1 -kind: Database -metadata: - name: immich-db - namespace: cnpg-cluster -spec: - cluster: - name: cnpg-cluster - extensions: - - ensure: present - name: vector - name: immich - owner: immich -status: {} diff --git a/infrastructure/hydra/postgres/kustomization.yaml b/infrastructure/hydra/postgres/kustomization.yaml index 63ec40e..60d391a 100644 --- a/infrastructure/hydra/postgres/kustomization.yaml +++ b/infrastructure/hydra/postgres/kustomization.yaml @@ -5,5 +5,4 @@ metadata: namespace: cnpg-cluster resources: - cluster-namespace.yaml -- immich-db.yaml - pg-cluster.yaml diff --git a/pkg/postgres/postgres.go b/pkg/postgres/postgres.go index 2c23cd1..a63eddf 100644 --- a/pkg/postgres/postgres.go +++ b/pkg/postgres/postgres.go @@ -18,7 +18,7 @@ func Stack() stack.Stack { map[string]any{ "cluster-namespace": root.PGClusterNamespace, "pg-cluster": Cluster(), - "immich-db": ImmichDatabase(), + // "immich-db": ImmichDatabase(), }, ) return kz.Stack("postgres")