feat(apps): move apps to stable and update image refs (#2517)
* feat(apps): move apps to stable and update image refs * remove proxy vikunja * add more test opitons * rerun * 80 * correct configmap for nginx * yml -> yml * trim b and B * whoops
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/nocodb
|
||||
tag: v0.90.2@sha256:cd67c84e510f4d913c439c2de01aaa294894da22a478ff3873b3cfd41dfadf60
|
||||
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
|
||||
|
||||
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"
|
||||
Reference in New Issue
Block a user