62 lines
1.1 KiB
YAML
62 lines
1.1 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/nocodb
|
|
tag: v0.91.7@sha256:d4976f811c958e070ee653920b46753c2b4ecbb9468adf7eed17cda4b3526aed
|
|
pullPolicy: IfNotPresent
|
|
|
|
securityContext:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
env:
|
|
NC_MIN: ""
|
|
PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
# User Defined
|
|
NC_PUBLIC_URL: "http://localhost:10226"
|
|
NC_DISABLE_TELE: true
|
|
DISABLE_SPLASH_SCREEN: false
|
|
NC_REDIS_URL:
|
|
secretKeyRef:
|
|
name: rediscreds
|
|
key: url
|
|
NC_AUTH_JWT_SECRET:
|
|
secretKeyRef:
|
|
name: nocodb-secrets
|
|
key: NC_AUTH_JWT_SECRET
|
|
|
|
envFrom:
|
|
- configMapRef:
|
|
name: nocodb-configmap
|
|
|
|
probes:
|
|
liveness:
|
|
path: "/dashboard"
|
|
readiness:
|
|
path: "/dashboard"
|
|
startup:
|
|
path: "/dashboard"
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10226
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/usr/app/data"
|
|
|
|
postgresql:
|
|
enabled: true
|
|
existingSecret: "dbcreds"
|
|
postgresqlUsername: nocodb
|
|
postgresqlDatabase: nocodb
|
|
|
|
redis:
|
|
enabled: true
|
|
existingSecret: "rediscreds"
|