Browse Source

Merge pull request #5162 from sgeist-ionos/pr_helm_chart_mysql

add mysql to helm chart
pull/5575/head
navi 1 year ago committed by GitHub
parent
commit
4bde056252
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      charts/nocodb/Chart.yaml
  2. 11
      charts/nocodb/values.yaml

4
charts/nocodb/Chart.yaml

@ -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

11
charts/nocodb/values.yaml

@ -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

Loading…
Cancel
Save