feat: configurable fulltext search backend in Helm chart#3
Open
dnplkndll wants to merge 1 commit intofeat/helm-chartfrom
Open
feat: configurable fulltext search backend in Helm chart#3dnplkndll wants to merge 1 commit intofeat/helm-chartfrom
dnplkndll wants to merge 1 commit intofeat/helm-chartfrom
Conversation
Add values for selecting the fulltext search backend: - fulltext.backend: "elastic" (default), "opensearch", or "typesense" - fulltext.dbUrl: override for non-ES backends (e.g. Typesense URL) - observability.otlpEndpoint + otlpHeaders: OTLP trace export config The FULLTEXT_BACKEND env var is set directly on the fulltext deployment (not via configmap, since only the fulltext pod needs it). FULLTEXT_DB_URL defaults to ELASTIC_URL but can be overridden via fulltext.dbUrl for backends that use a different URL format (e.g. Typesense with apiKey). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add Helm chart values for configuring the fulltext search backend and observability.
Fulltext backend selection
fulltext.backend:"elastic"(default),"opensearch", or"typesense"fulltext.dbUrl: OverrideFULLTEXT_DB_URLfor backends needing a different URL format (e.g. Typesense with?apiKey=)FULLTEXT_BACKENDset directly on fulltext deployment (not configmap — only fulltext pod needs it)FULLTEXT_DB_URLdefaults toELASTIC_URLwhendbUrlis emptyObservability
observability.otlpEndpoint: OTLP trace/metrics export endpointobservability.otlpHeaders: Auth headers for OTLP (e.g.Authorization=Basic ...)No breaking changes
All new values default to empty strings — existing deployments are unaffected.
Depends on
Test plan
helm templatewith default values renders correctly (no new env vars)helm templatewithfulltext.backend=typesenserendersFULLTEXT_BACKEND+FULLTEXT_DB_URLoverridehelm templatewithobservability.otlpEndpointrenders OTEL vars in configmap🤖 Generated with Claude Code