Skip to content

Commit

Permalink
CircleCI commit for version '2.18.17-alpha.105424'
Browse files Browse the repository at this point in the history
  • Loading branch information
CI committed May 17, 2024
1 parent be64f9b commit ecc2619
Show file tree
Hide file tree
Showing 5 changed files with 25 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.18.17-alpha.104949'
appVersion: '2.18.17-alpha.105424'
description: Speckle Server
home: 'https://speckle.systems/'
icon: 'https://speckle.xyz/logo.svg'
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.18.17-alpha.104949
version: 2.18.17-alpha.105424
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 @@ -125,6 +125,8 @@ spec:
- name: NUXT_PUBLIC_DATADOG_ENV
value: {{ .Values.analytics.datadog_env | quote }}
{{- end }}
- name: FF_AUTOMATE_MODULE_ENABLED
value: {{ .Values.featureFlags.automateModuleEnabled | quote }}
{{- if .Values.analytics.survicate_workspace_key }}
- name: NUXT_PUBLIC_SURVICATE_WORKSPACE_KEY
value: {{ .Values.analytics.survicate_workspace_key | quote }}
Expand Down
3 changes: 3 additions & 0 deletions charts/speckle-server/templates/server/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ spec:
- name: ENABLE_FE2_MESSAGING
value: {{ .Values.server.enableFe2Messaging | quote }}

- name: FF_AUTOMATE_MODULE_ENABLED
value: {{ .Values.featureFlags.automateModuleEnabled | quote }}

- name: ONBOARDING_STREAM_URL
value: {{ .Values.server.onboarding.stream_url }}
- name: ONBOARDING_STREAM_CACHE_BUST_NUMBER
Expand Down
10 changes: 10 additions & 0 deletions charts/speckle-server/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@
"description": "The name of the ClusterIssuer kubernetes resource that provides the SSL Certificate",
"default": "letsencrypt-staging"
},
"featureFlags": {
"type": "object",
"properties": {
"automateModuleEnabled": {
"type": "boolean",
"description": "High level flag fully toggles the integrated automate module",
"default": false
}
}
},
"analytics": {
"type": "object",
"properties": {
Expand Down
9 changes: 8 additions & 1 deletion charts/speckle-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ tlsRejectUnauthorized: '1'
## @param cert_manager_issuer The name of the ClusterIssuer kubernetes resource that provides the SSL Certificate
##
cert_manager_issuer: letsencrypt-staging
## @section Feature flags
## @descriptionStart
## This object is a central location to define feature flags for the whole chart.
## @descriptionEnd
featureFlags:
## @param featureFlags.automateModuleEnabled High level flag fully toggles the integrated automate module
automateModuleEnabled: false
analytics:
## @param analytics.enabled Enable or disable analytics
enabled: true
Expand Down Expand Up @@ -56,7 +63,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.18.17-alpha.104949'
docker_image_tag: '2.18.17-alpha.105424'
## @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 ecc2619

Please sign in to comment.