Files
truecharts/charts/incubator/nocodb/values.yaml
T
Stavros KoisandGitHub 8a47a6bddf feat(apps): add 5 apps, fix babybuddy rofs (#2501)
* feat(audiobookshelf): add audiobookshelf

* root

* remove audiobookshelf from dev

* image

* feat(fluidd): add fluidd

* rootless audiobook

* feat(rss-brdige): add rss-bridge

* feat(nocodb): add nocodb

* root rss-brdige

* nocodb add redis

* ui and fix configmap

* change db url

* remove probe paths

* comment jwt for now

* add jwt_token

* other url

* db url

* other way for db url

* try different port

* whoops

* quote

* printf

* quotes

* feat(ddns-updater): add ddns-updater

* cleanups

* fix(babybuddy): rofs instead of allopriv esca

* skip installint storj-node, needs identity file to be created before

* whoops
2022-04-18 06:29:33 +00:00

56 lines
1001 B
YAML

image:
repository: nocodb/nocodb
tag: 0.90.2@sha256:cdcd01cf9d0748ed4ad18aded465728681ae059d38beffb287987881b861323e
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
envValueFrom:
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
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"