Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add mysql to helm chart #5162

Merged
merged 1 commit into from May 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions charts/nocodb/Chart.yaml
Expand Up @@ -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
Expand Down
11 changes: 11 additions & 0 deletions charts/nocodb/values.yaml
Expand Up @@ -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
Expand All @@ -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