File tree Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
2
2
name : langstream
3
3
description : Helm chart for LangStream
4
4
type : application
5
- version : 0.0.3
5
+ version : 0.0.4
6
6
appVersion : 0.0.5
Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ metadata:
6
6
labels :
7
7
{{- include "langstream.deployerLabels" . | nindent 4 }}
8
8
data :
9
- DEPLOYER_AGENT_RESOURCES : |
10
- {{ .Values.deployer.app.config.agentResources | toYaml | indent 4 }}
11
9
DEPLOYER_CLUSTER_RUNTIME : |
12
10
kubernetes:
13
11
namespace-prefix: {{ .Values.tenants.namespacePrefix }}
23
21
{{- range $key, $val := $.Values.codeStorage.configuration }}
24
22
{{ $key }}: {{ $val | toString | replace "\"" "" | trim | quote }}
25
23
{{- end }}
26
- DEPLOYER_POD_TEMPLATE : |
27
- {{ .Values.deployer.app.config.podTemplate | toYaml | indent 4 }}
24
+ DEPLOYER_RUNTIME_IMAGE : " {{ include " langstream.runtimeImage" . }}"
25
+ DEPLOYER_RUNTIME_IMAGE_PULL_POLICY : {{ .Values.runtime.imagePullPolicy }}
26
+
27
+ {{- range $key, $val := $.Values.deployer.app.config }}
28
+ {{- if eq "codeStorage" $key }}
29
+ {{- else if eq "clusterRuntime" $key }}
30
+ {{- else }}
31
+ {{- if kindIs "map" $val }}
32
+ DEPLOYER_{{ $key | replace "-" "" | replace "\"" "." | snakecase | upper | replace "." "_" }} : |
33
+ {{ $val | toYaml | indent 4 }}
34
+ {{- else }}
35
+ DEPLOYER_{{ $key | replace "-" "" | replace "\"" "." | snakecase | upper | replace "." "_" }} : " {{- $val -}}"
36
+ {{- end }}
37
+ {{- end }}
38
+ {{- end }}
39
+
28
40
You can’t perform that action at this time.
0 commit comments