Skip to content

Commit

Permalink
CircleCI commit for version '2.23.6-branch.testing2.281190-440ade5'
Browse files Browse the repository at this point in the history
  • Loading branch information
CI committed Jan 24, 2025
1 parent f377be6 commit 6775eb7
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/speckle-server-branch-testing2/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.testing2.277300-1bb172f'
appVersion: '2.23.6-branch.testing2.281190-440ade5'
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.testing2.277300-1bb172f
version: 2.23.6-branch.testing2.281190-440ade5
8 changes: 8 additions & 0 deletions charts/speckle-server-branch-testing2/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,9 @@ Generate the environment variables for Speckle server and Speckle objects deploy
- name: FF_WORKSPACES_MULTI_REGION_ENABLED
value: {{ .Values.featureFlags.workspacesMultiRegionEnabled | quote }}

- name: FF_FORCE_EMAIL_VERIFICATION
value: {{ .Values.featureFlags.forceEmailVerification | quote }}

{{- if .Values.featureFlags.billingIntegrationEnabled }}
- name: STRIPE_API_KEY
valueFrom:
Expand Down Expand Up @@ -782,6 +785,11 @@ Generate the environment variables for Speckle server and Speckle objects deploy
value: {{ .Values.db.knexAsyncStackTracesEnabled | quote }}
{{- end}}

{{- if .Values.db.knexImprovedTelemetryStackTraces }}
- name: KNEX_IMPROVED_TELEMETRY_STACK_TRACES
value: {{ .Values.db.knexImprovedTelemetryStackTraces | quote }}
{{- end}}

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ spec:
value: {{ .Values.featureFlags.workspacesMultiRegionEnabled | quote }}
- name: NUXT_PUBLIC_FF_GENDOAI_MODULE_ENABLED
value: {{ .Values.featureFlags.gendoAIModuleEnabled | quote }}
- name: NUXT_PUBLIC_FF_FORCE_EMAIL_VERIFICATION
value: {{ .Values.featureFlags.forceEmailVerification | quote }}
{{- if .Values.analytics.survicate_workspace_key }}
- name: NUXT_PUBLIC_SURVICATE_WORKSPACE_KEY
value: {{ .Values.analytics.survicate_workspace_key | quote }}
Expand Down
10 changes: 10 additions & 0 deletions charts/speckle-server-branch-testing2/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@
"type": "boolean",
"description": "Toggles whether the experimental .Net IFC importer is used for importing IFC files.",
"default": false
},
"forceEmailVerification": {
"type": "boolean",
"description": "Forces email verification for all users",
"default": false
}
}
},
Expand Down Expand Up @@ -246,6 +251,11 @@
"description": "If enabled, will provide better stack traces for errors arising out of knex operations",
"default": false
},
"knexImprovedTelemetryStackTraces": {
"type": "boolean",
"description": "If enabled, will provide better stack traces for knex telemetry",
"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
7 changes: 6 additions & 1 deletion charts/speckle-server-branch-testing2/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ featureFlags:
workspacesMultiRegionEnabled: false
## @param featureFlags.fileImportIFCDotNetEnabled Toggles whether the experimental .Net IFC importer is used for importing IFC files.
fileImportIFCDotNetEnabled: false
## @param featureFlags.forceEmailVerification Forces email verification for all users
forceEmailVerification: false
analytics:
## @param analytics.enabled Enable or disable analytics
enabled: true
Expand Down Expand Up @@ -81,7 +83,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.testing2.277300-1bb172f'
docker_image_tag: '2.23.6-branch.testing2.281190-440ade5'
## @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 @@ -181,6 +183,9 @@ db:
## @param db.knexAsyncStackTracesEnabled If enabled, will provide better stack traces for errors arising out of knex operations
##
knexAsyncStackTracesEnabled: false
## @param db.knexImprovedTelemetryStackTraces If enabled, will provide better stack traces for knex telemetry
##
knexImprovedTelemetryStackTraces: 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 6775eb7

Please sign in to comment.