Files
infra-apps/nocodb/deployment.yaml
kaffa 18bb15037a Increase nocodb memory limit to 1Gi
Was OOM crashing at 512Mi.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-18 17:05:10 -07:00

34 lines
693 B
YAML

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: 1Gi
requests:
cpu: 50m
memory: 128Mi