Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/langstream/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: langstream
description: Helm chart for LangStream
type: application
version: 1.2.1
version: 1.3.0
appVersion: 0.6.2
13 changes: 9 additions & 4 deletions charts/langstream/templates/deployer/deployer-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,21 @@ data:
{{- end }}

{{- range $key, $val := $.Values.deployer.app.config }}
{{- if eq "codeStorage" $key }}
{{- else if eq "clusterRuntime" $key }}
{{- if or (eq $key "codeStorage") (eq $key "clusterRuntime") (eq $key "quarkus") }}
{{- else }}
{{- if kindIs "map" $val }}
DEPLOYER_{{ $key | replace "-" "" | replace "\"" "." | snakecase | upper | replace "." "_" }}: |
DEPLOYER_{{ $key | replace "-" "" | replace "\"" "." | snakecase | upper | replace "." "_" }}: |
{{ $val | toYaml | indent 4 }}
{{- else }}
DEPLOYER_{{ $key | replace "-" "" | replace "\"" "." | snakecase | upper | replace "." "_" }}: "{{- $val -}}"
DEPLOYER_{{ $key | replace "-" "" | replace "\"" "." | snakecase | upper | replace "." "_" }}: "{{- $val -}}"
{{- end }}
{{- end }}
{{- end }}

{{- with .Values.deployer.app.config.quarkus }}
{{- range $k, $v := . }}
{{ $k }}: {{ $v | toString | quote }}
{{- end }}
{{- end }}


7 changes: 7 additions & 0 deletions charts/langstream/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

Check failure on line 1 in charts/langstream/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

1:1 [empty-lines] too many blank lines (1 > 0)
images:
# -- Tag for all the images
tag: ""
Expand All @@ -8,7 +8,7 @@
replicaCount: 1
image:
# -- Repository for the image
repository: ghcr.io/langstream/langstream-control-plane

Check failure on line 11 in charts/langstream/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

11:17 [colons] too many spaces after colon
# -- Pull policy for the image
pullPolicy: IfNotPresent
# -- Tag for the image. If set it overrides images.tag
Expand Down Expand Up @@ -48,7 +48,7 @@
# -- Resources for the pod
resources:
requests:
cpu: 0.25

Check failure on line 51 in charts/langstream/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

51:8 [indentation] wrong indentation: expected 6 but found 7
memory: 256Mi
# -- Liveness probe settings
liveness:
Expand All @@ -66,7 +66,7 @@
tolerations: []
# -- Affinity settings
affinity: {}

Check failure on line 69 in charts/langstream/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

69:1 [trailing-spaces] trailing spaces
# -- Section related to the application
app:
# -- Application configuration. It must be in Spring application.properties format. e.g.: logging.level.ai.langstream.webservice: debug
Expand All @@ -75,7 +75,7 @@

client:
# -- Number of replicas
replicaCount: 1

Check failure on line 78 in charts/langstream/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

78:18 [trailing-spaces] trailing spaces
image:
# -- Repository for the image
repository: ghcr.io/langstream/langstream-cli
Expand Down Expand Up @@ -103,7 +103,7 @@
# -- Affinity settings
affinity: {}
# -- Resources for the pod
resources:

Check failure on line 106 in charts/langstream/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

106:13 [trailing-spaces] trailing spaces
requests:
cpu: 0.25
memory: 256Mi
Expand Down Expand Up @@ -188,13 +188,13 @@
maxInstanceUnits: 8
# -- Max allocatable units for a single tenant
defaultMaxTotalResourceUnitsPerTenant: 0
# -- Wheter to enable the liveness probe for the agent

Check failure on line 191 in charts/langstream/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

191:10 [comments] missing starting space in comment
enableLivenessProbe: true
# -- Liveness probe initial delay

Check failure on line 193 in charts/langstream/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

193:10 [comments] missing starting space in comment
livenessProbeInitialDelaySeconds: 10
# -- Liveness probe period

Check failure on line 195 in charts/langstream/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

195:10 [comments] missing starting space in comment
livenessProbePeriodSeconds: 30
# -- Liveness probe timeout

Check failure on line 197 in charts/langstream/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

197:10 [comments] missing starting space in comment
livenessProbeTimeoutSeconds: 5
# -- Wheter to enable the readiness probe for the agent
enableReadinessProbe: true
Expand Down Expand Up @@ -232,6 +232,13 @@
tolerations: []
nodeSelector: {}
annotations: {}
quarkus:
# -- Quarkus configuration for the deployer
QUARKUS_KUBERNETES_CLIENT_REQUEST_TIMEOUT: "120000"
QUARKUS_KUBERNETES_CLIENT_CONNECTION_TIMEOUT: "10000"
QUARKUS_KUBERNETES_CLIENT_HTTP2_DISABLE: "true"
QUARKUS_VERTX_EVENT_LOOPS_POOL_SIZE: "8"
QUARKUS_VERTX_BLOCKED_THREAD_CHECK_INTERVAL: "20S"


apiGateway:
Expand Down