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