Skip to content

Commit

Permalink
CircleCI commit for version '2.23.7-branch.testing4.286512-3715725'
Browse files Browse the repository at this point in the history
  • Loading branch information
CI committed Feb 5, 2025
1 parent b865007 commit 7833df5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 9 deletions.
4 changes: 2 additions & 2 deletions charts/speckle-server-branch-testing4/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-branch.testing4.284572-4ee2783'
appVersion: '2.23.7-branch.testing4.286512-3715725'
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-branch.testing4.284572-4ee2783
version: 2.23.7-branch.testing4.286512-3715725
6 changes: 4 additions & 2 deletions charts/speckle-server-branch-testing4/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -595,8 +595,8 @@ Generate the environment variables for Speckle server and Speckle objects deploy
- name: FF_FORCE_ONBOARDING
value: {{ .Values.featureFlags.forceOnboarding | quote }}

- name: FF_OBJECTS_STREAMING_FIX
value: {{ .Values.featureFlags.objectsStreamingFix | quote }}
- name: FF_CACHE_AUTH_PIPELINE
value: {{ .Values.featureFlags.cacheAuthPipeline | quote }}

{{- if .Values.featureFlags.billingIntegrationEnabled }}
- name: STRIPE_API_KEY
Expand Down Expand Up @@ -1096,4 +1096,6 @@ Generate the environment variables for Speckle server and Speckle objects deploy
- name: MULTI_REGION_CONFIG_PATH
value: "/multi-region-config/multi-region-config.json"
{{- end }}
- name: CACHE_AUTH_PIPELINE_TTL_SECONDS
value: {{ .Values.server.cacheAuthPipelineTtlSeconds | quote }}
{{- end }}
9 changes: 7 additions & 2 deletions charts/speckle-server-branch-testing4/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@
"description": "Forces onboarding for all users",
"default": false
},
"objectsStreamingFix": {
"cacheAuthPipeline": {
"type": "boolean",
"description": "Enables the fix for the objects streaming issue when client prematurely closes the connection",
"description": "Enables the caching of the authentication pipeline component of each client request",
"default": false
}
}
Expand Down Expand Up @@ -686,6 +686,11 @@
"description": "If enabled, the server will use the async request context for improved log msg correlation",
"default": false
},
"cacheAuthPipelineTtlSeconds": {
"type": "number",
"description": "The time in seconds for which the authentication pipeline component of each client request should be cached",
"default": 2
},
"gendoAI": {
"type": "object",
"properties": {
Expand Down
9 changes: 6 additions & 3 deletions charts/speckle-server-branch-testing4/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ featureFlags:
forceEmailVerification: false
## @param featureFlags.forceOnboarding Forces onboarding for all users
forceOnboarding: false
## @param featureFlags.objectsStreamingFix Enables the fix for the objects streaming issue when client prematurely closes the connection
objectsStreamingFix: false
## @param featureFlags.cacheAuthPipeline Enables the caching of the authentication pipeline component of each client request
cacheAuthPipeline: false
analytics:
## @param analytics.enabled Enable or disable analytics
enabled: true
Expand Down Expand Up @@ -87,7 +87,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-branch.testing4.284572-4ee2783'
docker_image_tag: '2.23.7-branch.testing4.286512-3715725'
## @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 @@ -460,6 +460,9 @@ server:
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
## @param server.cacheAuthPipelineTtlSeconds The time in seconds for which the authentication pipeline component of each client request should be cached
cacheAuthPipelineTtlSeconds: 2
## @section Gendo AI
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 7833df5

Please sign in to comment.