Skip to content

Commit

Permalink
CircleCI commit for version '2.23.6-alpha.273243'
Browse files Browse the repository at this point in the history
  • Loading branch information
CI committed Jan 15, 2025
1 parent 891f007 commit d0cd999
Show file tree
Hide file tree
Showing 4 changed files with 15 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.273160'
appVersion: '2.23.6-alpha.273243'
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.273160
version: 2.23.6-alpha.273243
5 changes: 5 additions & 0 deletions charts/speckle-server/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,11 @@ Generate the environment variables for Speckle server and Speckle objects deploy
value: {{ .Values.server.migration.movedTo }}
{{- end }}

{{- if .Values.server.asyncRequestContextEnabled }}
- name: ASYNC_REQUEST_CONTEXT_ENABLED
value: {{ .Values.server.asyncRequestContextEnabled | quote }}
{{- end}}

# *** No more closures flag - prevents writing to the closure table ***
- name: FF_NO_CLOSURE_WRITES
value: {{ .Values.featureFlags.noClosureWrites | quote }}
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 @@ -661,6 +661,11 @@
"description": "The url of the Speckle Automate instance",
"default": "https://automate.speckle.systems"
},
"asyncRequestContextEnabled": {
"type": "boolean",
"description": "If enabled, the server will use the async request context for improved log msg correlation",
"default": false
},
"gendoAI": {
"type": "object",
"properties": {
Expand Down
4 changes: 3 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.273160'
docker_image_tag: '2.23.6-alpha.273243'
## @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 @@ -449,6 +449,8 @@ server:
max_project_models_per_page: 500
## @param server.speckleAutomateUrl The url of the Speckle Automate instance
speckleAutomateUrl: 'https://automate.speckle.systems'
## @param server.asyncRequestContextEnabled If enabled, the server will use the async request context for improved log msg correlation
asyncRequestContextEnabled: false
gendoAI:
## @param server.gendoAI.apiUrl The url of the Gendo AI application, including protocol.
apiUrl: 'https://api.gendo.ai/external/generate'
Expand Down

0 comments on commit d0cd999

Please sign in to comment.