Skip to content

Commit

Permalink
CircleCI commit for version '2.23.6-alpha.272689'
Browse files Browse the repository at this point in the history
  • Loading branch information
CI committed Jan 14, 2025
1 parent 8211975 commit 72679c7
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/speckle-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apiVersion: v2
# It is recommended to use it with quotes.

# Set by the build process to the correct value
appVersion: '2.23.6-alpha.272649'
appVersion: '2.23.6-alpha.272689'
description: Speckle Server
home: 'https://speckle.systems/'
icon: 'https://app.speckle.systems/images/logo.png'
Expand All @@ -21,4 +21,4 @@ type: application
# Versions are expected to follow Semantic Versioning (https://semver.org/)

# Set by the build process to the correct value
version: 2.23.6-alpha.272649
version: 2.23.6-alpha.272689
5 changes: 5 additions & 0 deletions charts/speckle-server/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -772,6 +772,11 @@ Generate the environment variables for Speckle server and Speckle objects deploy
- name: POSTGRES_CONNECTION_ACQUIRE_TIMEOUT_MILLIS
value: {{ .Values.db.connectionAcquireTimeoutMillis | quote }}

{{- if .Values.db.knexAsyncStackTracesEnabled }}
- name: KNEX_ASYNC_STACK_TRACES_ENABLED
value: {{ .Values.db.knexAsyncStackTracesEnabled | quote }}
{{- end}}

- name: PGSSLMODE
value: "{{ .Values.db.PGSSLMODE }}"

Expand Down
5 changes: 5 additions & 0 deletions charts/speckle-server/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,11 @@
"description": "The maximum time in milliseconds to wait for a new connection to be created in the connection pool. Should be less than the acquisition timeout, as a new connection may need to be created then acquired.",
"default": 5000
},
"knexAsyncStackTracesEnabled": {
"type": "boolean",
"description": "If enabled, will provide better stack traces for errors arising out of knex operations",
"default": false
},
"databaseName": {
"type": "string",
"description": "(Optional) The name of the Postgres database to which Speckle will connect. Only required for the Database Monitoring utility when the connection string is to a database connection pool and multi-region is disabled, otherwise this value is ignored.",
Expand Down
5 changes: 4 additions & 1 deletion charts/speckle-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ ingress:
##
## @param docker_image_tag Speckle is published as a Docker Image. The version of the image which will be deployed is specified by this tag.
##
docker_image_tag: '2.23.6-alpha.272649'
docker_image_tag: '2.23.6-alpha.272689'
## @param imagePullPolicy Determines the conditions when the Docker Images for Speckle should be pulled from the Image registry.
## ref: https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy
##
Expand Down Expand Up @@ -178,6 +178,9 @@ db:
## @param db.connectionCreationTimeoutMillis The maximum time in milliseconds to wait for a new connection to be created in the connection pool. Should be less than the acquisition timeout, as a new connection may need to be created then acquired.
##
connectionCreationTimeoutMillis: 5000
## @param db.knexAsyncStackTracesEnabled If enabled, will provide better stack traces for errors arising out of knex operations
##
knexAsyncStackTracesEnabled: false
## @param db.databaseName (Optional) The name of the Postgres database to which Speckle will connect. Only required for the Database Monitoring utility when the connection string is to a database connection pool and multi-region is disabled, otherwise this value is ignored.
databaseName: ''
connectionString:
Expand Down

0 comments on commit 72679c7

Please sign in to comment.