From 38cd4ceae6950f661212dc788c178aba51cbde2a Mon Sep 17 00:00:00 2001 From: PaulineMauryL Date: Wed, 30 Oct 2024 15:16:43 +0000 Subject: [PATCH 1/2] add defaults values --- charts/lomas/values.schema.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/charts/lomas/values.schema.json b/charts/lomas/values.schema.json index 2d5a844..2abb743 100644 --- a/charts/lomas/values.schema.json +++ b/charts/lomas/values.schema.json @@ -270,15 +270,18 @@ "properties": { "max_pool_size": { "description": "Total number of open connections (active + idle) allowed in the pool.", - "type": "int" + "type": "int", + "default": 100 }, "min_pool_size": { "description": "Minimum number of idle connections that will be maintained, even when the application is idle or under low load.", - "type": "int" + "type": "int", + "default": 2 }, "max_connecting": { "description": "Controls the number of simultaneous new connection attempts being made.", - "type": "int" + "type": "int", + "default": 2 }, "architecture": { "type": "string", @@ -720,6 +723,7 @@ "private_db_credentials": { "description": "List of credentials to access private dataset", "type": "array", + "default": [] , "items": { "type": "object", "properties": { From 725898aeadcc66fcbd6e70543c2272c682859dff Mon Sep 17 00:00:00 2001 From: PaulineMauryL Date: Wed, 30 Oct 2024 15:20:30 +0000 Subject: [PATCH 2/2] update version --- charts/lomas/Chart.yaml | 4 ++-- charts/lomas/values.schema.json | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/lomas/Chart.yaml b/charts/lomas/Chart.yaml index f21ce13..1cfac81 100644 --- a/charts/lomas/Chart.yaml +++ b/charts/lomas/Chart.yaml @@ -16,13 +16,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: 0.3.4 +version: 0.3.5 # 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: "0.3.4" +appVersion: "0.3.5" dependencies: - name: lomas-server diff --git a/charts/lomas/values.schema.json b/charts/lomas/values.schema.json index 2abb743..b768297 100644 --- a/charts/lomas/values.schema.json +++ b/charts/lomas/values.schema.json @@ -42,10 +42,10 @@ }, "tag": { "type": "string", - "default": "0.3.4", + "default": "0.3.5", "enum": [ "latest", - "0.3.4" + "0.3.5" ] } } @@ -453,10 +453,10 @@ }, "tag": { "type": "string", - "default": "0.3.4", + "default": "0.3.5", "enum": [ "latest", - "0.3.4" + "0.3.5" ] } }