From 746250976adeb34e2b10deb364746c839178bf1b Mon Sep 17 00:00:00 2001 From: u1 Date: Tue, 6 Jan 2026 00:18:45 +0000 Subject: [PATCH] feat(db): add postgres service --- kustomize/base/postgres/service.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 kustomize/base/postgres/service.yaml diff --git a/kustomize/base/postgres/service.yaml b/kustomize/base/postgres/service.yaml new file mode 100644 index 0000000..cdcd19c --- /dev/null +++ b/kustomize/base/postgres/service.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Service +metadata: + name: postgres + annotations: + argocd.argoproj.io/sync-wave: "0" +spec: + clusterIP: None + ports: + - name: pg + port: 5432 + targetPort: pg + selector: + app: postgres