Skip to content

Commit

Permalink
[BUG] Use correct env for query/compact in helm (#2097)
Browse files Browse the repository at this point in the history
## Description of changes

*Summarize the changes made by this PR.*
 - Improvements & Bug fixes
	 - Use correct env for query/compact in helm
 - New functionality
	 - None

## Test plan
*How are these changes tested?*
- [x] Tests pass locally with `pytest` for python, `yarn test` for js,
`cargo test` for rust

## Documentation Changes
*Are all docstrings for user-facing APIs updated if required? Do we need
to make documentation changes in the [docs
repository](https://github.com/chroma-core/docs)?*
  • Loading branch information
HammadB authored May 1, 2024
1 parent ab88c21 commit c3db12e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion k8s/distributed-chroma/templates/compaction-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
ports:
- containerPort: 50051
env:
{{ range .Values.sysdb.env }}
{{ range .Values.compactionService.env }}
- name: {{ .name }}
# TODO properly use flow control here to check which type of value we need.
{{ .value | nindent 14 }}
Expand Down
2 changes: 1 addition & 1 deletion k8s/distributed-chroma/templates/query-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
- name: chroma
mountPath: /index_data
env:
{{ range .Values.sysdb.env }}
{{ range .Values.queryService.env }}
- name: {{ .name }}
# TODO properly use flow control here to check which type of value we need.
{{ .value | nindent 14 }}
Expand Down

0 comments on commit c3db12e

Please sign in to comment.