Skip to content

Commit

Permalink
CircleCI commit for version '2.17.2-alpha.61559'
Browse files Browse the repository at this point in the history
  • Loading branch information
CI committed Nov 10, 2023
1 parent d0e0710 commit 0075174
Show file tree
Hide file tree
Showing 4 changed files with 13 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.17.2-alpha.61538'
appVersion: '2.17.2-alpha.61559'
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.17.2-alpha.61538
version: 2.17.2-alpha.61559
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 @@ -122,6 +122,9 @@ spec:
- name: FILE_SIZE_LIMIT_MB
value: {{ .Values.file_size_limit_mb | quote }}

- name: MAX_PROJECT_MODELS_PER_PAGE
value: {{ .Values.server.max_project_models_per_page | quote }}

- name: MAX_OBJECT_SIZE_MB
value: {{ .Values.server.max_object_size_mb | 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 @@ -511,6 +511,11 @@
"description": "The maximum size of an individual object which can be uploaded to the server",
"default": 10
},
"max_project_models_per_page": {
"type": "number",
"description": "The maximum number of models that can be returned in a single page of a query for all models of a project",
"default": 100
},
"speckleAutomateUrl": {
"type": "string",
"description": "The url of the Speckle Automate instance",
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 @@ -56,7 +56,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.17.2-alpha.61538'
docker_image_tag: '2.17.2-alpha.61559'
## @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 @@ -376,6 +376,8 @@ server:
onboardingStreamId: ''
## @param server.max_object_size_mb The maximum size of an individual object which can be uploaded to the server
max_object_size_mb: 10
## @param server.max_project_models_per_page The maximum number of models that can be returned in a single page of a query for all models of a project
max_project_models_per_page: 100
## @param server.speckleAutomateUrl The url of the Speckle Automate instance
speckleAutomateUrl: 'https://automate.speckle.systems'
sessionSecret:
Expand Down

0 comments on commit 0075174

Please sign in to comment.