Skip to content

Commit

Permalink
[ENH] Support FE replica count (#2561)
Browse files Browse the repository at this point in the history
## Description of changes

*Summarize the changes made by this PR.*
 - Improvements & Bug fixes
	 - Add replica count in helm chart and bump version
 - New functionality
	 - /

## Test plan
*How are these changes tested?*
Existing tests ensure no functional regressions. This is not explicitly
tested.
- [x] Tests pass locally with `pytest` for python, `yarn test` for js,
`cargo test` for rust

## Documentation Changes
None
  • Loading branch information
HammadB authored Jul 23, 2024
1 parent 3b0abb5 commit 7f52a7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion k8s/distributed-chroma/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apiVersion: v2
name: distributed-chroma
description: A helm chart for distributed Chroma
type: application
version: 0.1.5
version: 0.1.6
appVersion: "0.4.23"
keywords:
- chroma
Expand Down
2 changes: 1 addition & 1 deletion k8s/distributed-chroma/templates/frontend-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: frontend-service
namespace: {{ .Values.namespace }}
spec:
replicas: 2
replicas: {{ .Values.frontendService.replicaCount }}
selector:
matchLabels:
app: frontend-service
Expand Down
1 change: 1 addition & 0 deletions k8s/distributed-chroma/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ frontendService:
value: "http://jaeger:4317"
- name: CHROMA_OTEL_GRANULARITY
value: all
replicaCount: 2
sysdb:
image:
repository: 'local'
Expand Down

0 comments on commit 7f52a7f

Please sign in to comment.