add mysql to helm chart

This commit is contained in:
Semjon Geist
2023-02-19 19:01:47 +01:00
parent ea24fa9121
commit cfa51a5b11
2 changed files with 15 additions and 0 deletions

View File

@@ -5,6 +5,10 @@ dependencies:
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~11.6.6
- condition: mysql.enabled
name: mysql
repository: https://charts.bitnami.com/bitnami
version: ~9.4.6
description: A Helm chart for Kubernetes
maintainers: []
name: nocodb

View File

@@ -83,6 +83,7 @@ extraEnvs:
extraSecretEnvs:
NC_AUTH_JWT_SECRET: secretString
NC_DB: "mysql2://mysql:3306?u=nocodb&p=secretPass&d=nocodb"
storage:
size: 3Gi
@@ -96,3 +97,13 @@ postgresql:
password: secretPass
persistence:
size: 8Gi
mysql:
enabled: false
auth:
database: nocodb
username: nocodb
password: secretPass
persistence:
enabled: false
size: 8Gi