Skip to content

Commit 32f5149

Browse files
committed
add deployment_environment
1 parent af47cd1 commit 32f5149

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

charts/memobase/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ sources:
66
- https://github.com/memodb-io/memobase
77
- https://github.com/memodb-io/memobase-helm
88
type: application
9-
version: 0.0.18
9+
version: 0.0.19
1010
appVersion: 0.0.36

charts/memobase/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ llm_api_key and embedding_api_key (if enable_event_embedding is true) are requir
105105
| core.config.best_llm_model | string | `"gpt-4o-mini"` | |
106106
| core.config.buffer_flush_interval | int | `3600` | |
107107
| core.config.cache_user_profiles_ttl | int | `1200` | |
108-
| core.config.deployment_environment | string | `"local"` | |
109108
| core.config.embedding_api_key | string | `""` | |
110109
| core.config.embedding_base_url | string | `""` | |
111110
| core.config.embedding_dim | int | `1536` | |
@@ -130,6 +129,7 @@ llm_api_key and embedding_api_key (if enable_event_embedding is true) are requir
130129
| core.config.profile_validate_mode | bool | `true` | |
131130
| core.config.summary_llm_model | string | `""` | |
132131
| core.config.system_prompt | string | `""` | |
132+
| core.config.telemetry_deployment_environment | string | `"local"` | |
133133
| core.config.use_timezone | string | `""` | |
134134
| core.hpa.enabled | bool | `false` | |
135135
| core.hpa.maxReplicas | int | `5` | |

charts/memobase/templates/configmap.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,6 @@ data:
151151
{{- end }}
152152
{{- end }}
153153
154-
{{- if .Values.core.config.deployment_environment }}
155-
deployment_environment: {{ .Values.core.config.deployment_environment | quote }}
154+
{{- if .Values.core.config.telemetry_deployment_environment }}
155+
telemetry_deployment_environment: {{ .Values.core.config.telemetry_deployment_environment | quote }}
156156
{{- end }}

charts/memobase/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ core:
6666
minimum_chats_token_size_for_event_summary: 256
6767
event_tags: []
6868

69-
deployment_environment: "local"
69+
telemetry_deployment_environment: "local"
7070
prometheus:
7171
enabled: false
7272
resources:

0 commit comments

Comments
 (0)