Skip to content

Commit

Permalink
Merge pull request #26 from PaulineMauryL/fix_0.3.4
Browse files Browse the repository at this point in the history
add defaults values
  • Loading branch information
damienbfs authored Oct 30, 2024
2 parents e408e9a + 725898a commit 50b3e1e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions charts/lomas/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 11 additions & 7 deletions charts/lomas/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
},
"tag": {
"type": "string",
"default": "0.3.4",
"default": "0.3.5",
"enum": [
"latest",
"0.3.4"
"0.3.5"
]
}
}
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -450,10 +453,10 @@
},
"tag": {
"type": "string",
"default": "0.3.4",
"default": "0.3.5",
"enum": [
"latest",
"0.3.4"
"0.3.5"
]
}
}
Expand Down Expand Up @@ -720,6 +723,7 @@
"private_db_credentials": {
"description": "List of credentials to access private dataset",
"type": "array",
"default": [] ,
"items": {
"type": "object",
"properties": {
Expand Down

0 comments on commit 50b3e1e

Please sign in to comment.