Skip to content

Commit

Permalink
CircleCI commit for version '2.23.6-alpha.282343'
Browse files Browse the repository at this point in the history
  • Loading branch information
CI committed Jan 28, 2025
1 parent 53d5e8c commit b8f59e4
Show file tree
Hide file tree
Showing 5 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.282238'
appVersion: '2.23.6-alpha.282343'
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.282238
version: 2.23.6-alpha.282343
3 changes: 3 additions & 0 deletions charts/speckle-server/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,9 @@ Generate the environment variables for Speckle server and Speckle objects deploy
- name: FF_FORCE_EMAIL_VERIFICATION
value: {{ .Values.featureFlags.forceEmailVerification | quote }}

- name: FF_FORCE_ONBOARDING
value: {{ .Values.featureFlags.forceOnboarding | quote }}

{{- if .Values.featureFlags.billingIntegrationEnabled }}
- name: STRIPE_API_KEY
valueFrom:
Expand Down
2 changes: 2 additions & 0 deletions charts/speckle-server/templates/frontend_2/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ spec:
value: {{ .Values.featureFlags.gendoAIModuleEnabled | quote }}
- name: NUXT_PUBLIC_FF_FORCE_EMAIL_VERIFICATION
value: {{ .Values.featureFlags.forceEmailVerification | quote }}
- name: NUXT_PUBLIC_FF_FORCE_ONBOARDING
value: {{ .Values.featureFlags.forceOnboarding | quote }}
{{- if .Values.analytics.survicate_workspace_key }}
- name: NUXT_PUBLIC_SURVICATE_WORKSPACE_KEY
value: {{ .Values.analytics.survicate_workspace_key | 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 @@ -89,6 +89,11 @@
"type": "boolean",
"description": "Forces email verification for all users",
"default": false
},
"forceOnboarding": {
"type": "boolean",
"description": "Forces onboarding for all users",
"default": false
}
}
},
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 @@ -51,6 +51,8 @@ featureFlags:
fileImportIFCDotNetEnabled: false
## @param featureFlags.forceEmailVerification Forces email verification for all users
forceEmailVerification: false
## @param featureFlags.forceOnboarding Forces onboarding for all users
forceOnboarding: false
analytics:
## @param analytics.enabled Enable or disable analytics
enabled: true
Expand Down Expand Up @@ -83,7 +85,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.282238'
docker_image_tag: '2.23.6-alpha.282343'
## @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

0 comments on commit b8f59e4

Please sign in to comment.