diff --git a/charts/terrakube/Chart.yaml b/charts/terrakube/Chart.yaml index 2c8091d..9600dbd 100644 --- a/charts/terrakube/Chart.yaml +++ b/charts/terrakube/Chart.yaml @@ -15,13 +15,13 @@ 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: 3.8.2 +version: 3.8.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 # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "2.15.2" +appVersion: "2.15.3" dependencies: - name: minio diff --git a/charts/terrakube/templates/secrets-api.yaml b/charts/terrakube/templates/secrets-api.yaml index 18cba5f..1ef4f17 100644 --- a/charts/terrakube/templates/secrets-api.yaml +++ b/charts/terrakube/templates/secrets-api.yaml @@ -85,6 +85,7 @@ stringData: DatasourceUser: '{{ .Values.api.properties.databaseUser }}' DatasourcePassword: '{{ .Values.api.properties.databasePassword }}' DatasourceSslMode: '{{ .Values.api.properties.databaseSslMode }}' + DatasourcePort: '{{ .Values.api.properties.databasePort }}' {{- end }} diff --git a/charts/terrakube/values.yaml b/charts/terrakube/values.yaml index 2e4be6b..8bdbc10 100644 --- a/charts/terrakube/values.yaml +++ b/charts/terrakube/values.yaml @@ -172,6 +172,9 @@ api: databaseUser: "" databasePassword: "" databaseSslMode: "disable" + databasePort: "3306" + +## The database port is only used for mysql databases ## SslMode values are disable, allow, prefer, require, verify-ca, verify-full. Default mode is "disable". ## Reference: https://jdbc.postgresql.org/documentation/publicapi/org/postgresql/PGProperty.html#SSL_MODE