From 22ac8bded3538aae6495ae8d314120d22e17c952 Mon Sep 17 00:00:00 2001 From: kaffa Date: Thu, 12 Mar 2026 14:00:41 +0900 Subject: [PATCH] chore: add nocodb and pgcat k8s manifests --- pgcat/service.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pgcat/service.yaml diff --git a/pgcat/service.yaml b/pgcat/service.yaml new file mode 100644 index 0000000..4581d0a --- /dev/null +++ b/pgcat/service.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: pgcat +spec: + ports: + - port: 6432 + protocol: TCP + targetPort: 6432 + selector: + app: pgcat + type: ClusterIP