From 4cc8e6fcd494f13be3b78e2d81158cf9832e55e7 Mon Sep 17 00:00:00 2001 From: kaffa Date: Thu, 12 Mar 2026 14:00:33 +0900 Subject: [PATCH] chore: add nocodb and pgcat k8s manifests --- nocodb/deployment.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 nocodb/deployment.yaml diff --git a/nocodb/deployment.yaml b/nocodb/deployment.yaml new file mode 100644 index 0000000..b741ba8 --- /dev/null +++ b/nocodb/deployment.yaml @@ -0,0 +1,33 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nocodb +spec: + replicas: 1 + selector: + matchLabels: + app: nocodb + template: + metadata: + labels: + app: nocodb + spec: + containers: + - image: nocodb/nocodb:latest + imagePullPolicy: Always + name: nocodb + env: + - name: NC_DB + value: pg://pgcat:6432?u=nocodb&p=nocodb&d=nocodb + - name: NC_PUBLIC_URL + value: https://nocodb.inouter.com + ports: + - containerPort: 8080 + protocol: TCP + resources: + limits: + cpu: "1" + memory: 512Mi + requests: + cpu: 50m + memory: 128Mi