diff --git a/charts/nocodb/Chart.yaml b/charts/nocodb/Chart.yaml index a6876b2..8597b2d 100644 --- a/charts/nocodb/Chart.yaml +++ b/charts/nocodb/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.3.2 +version: 0.3.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/nocodb/README.md b/charts/nocodb/README.md index bdc0f92..c11fa17 100644 --- a/charts/nocodb/README.md +++ b/charts/nocodb/README.md @@ -2,7 +2,7 @@ -![Version: 0.3.2](https://img.shields.io/badge/Version-0.3.2-informational?style=flat-square) +![Version: 0.3.3](https://img.shields.io/badge/Version-0.3.3-informational?style=flat-square) A Helm chart for Kubernetes diff --git a/charts/nocodb/templates/_helpers.tpl b/charts/nocodb/templates/_helpers.tpl index 007eba2..63d6751 100644 --- a/charts/nocodb/templates/_helpers.tpl +++ b/charts/nocodb/templates/_helpers.tpl @@ -241,16 +241,16 @@ Get the credentials secret. {{- end -}} {{- define "nocodb.minio.rootUserKey" -}} - {{- if .Values.minio.auth.existingSecretRootUserKey -}} - {{- printf "%s" .Values.minio.auth.existingSecretRootUserKey -}} + {{- if .Values.minio.auth.rootUserSecretKey -}} + {{- printf "%s" .Values.minio.auth.rootUserSecretKey -}} {{- else -}} {{- print "root-user" -}} {{- end -}} {{- end -}} {{- define "nocodb.minio.rootPasswordKey" -}} - {{- if .Values.minio.auth.existingSecretRootPasswordKey -}} - {{- printf "%s" .Values.minio.auth.existingSecretRootPasswordKey -}} + {{- if .Values.minio.auth.rootPasswordSecretKey -}} + {{- printf "%s" .Values.minio.auth.rootPasswordSecretKey -}} {{- else -}} {{- print "root-password" -}} {{- end -}}