Skip to content

Commit

Permalink
[ENH] Add support for FE tolerations (#2560)
Browse files Browse the repository at this point in the history
## Description of changes

*Summarize the changes made by this PR.*
 - Improvements & Bug fixes
	 - Adds support for tolerations in the FE helm chart
 - New functionality
	 - None

## Test plan
*How are these changes tested?*
Existing tilt based tests ensure no regressions. This is not explicitly
tested for.
- [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 a0f66f8 commit 3f8cd19
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions k8s/distributed-chroma/templates/frontend-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ spec:
- name: CHROMA_LOGSERVICE_PORT
{{ .Values.frontendService.logServicePort }}
{{ .Values.frontendService.otherEnvConfig | nindent 12 }}
{{if .Values.frontendService.tolerations}}
tolerations:
{{ toYaml .Values.frontendService.tolerations | nindent 8 }}
{{ end }}
volumes:
- name: chroma
emptyDir: {}
Expand Down

0 comments on commit 3f8cd19

Please sign in to comment.