fix: Remove stale kodit image and persistence config from Helm chart#1758
Open
fix: Remove stale kodit image and persistence config from Helm chart#1758
Conversation
Kodit is now compiled into the controlplane binary as a Go library, not deployed as a separate container. Remove dead values that no template references: kodit.image and kodit.persistence. Kodit's data directory now lives on the controlplane's existing /filestore PVC. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
philwinder
approved these changes
Mar 4, 2026
| # existingSecret: "kodit-enrichment" | ||
| # existingSecretKey: "api-key" | ||
|
|
||
| # Persistence for kodit data |
Member
There was a problem hiding this comment.
This is the only contentious bit. Kodit needs a place to store it's data. Ideally it's somewhat persistent so it doesn't need to re-clone repos and such.
It defaults to the filestore path: https://github.com/helixml/helix/blob/main/api/pkg/server/kodit_init.go#L49
But it is configurable in the settings.
Also, I think this will mean it will delete user's current data and re-clone.
I think this is fine, but FYI.
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
kodit.imageconfig fromvalues.yamlandvalues-example.yaml— Kodit is now a Go library compiled into the controlplane binary, not a separate containerkodit.persistenceconfig — Kodit's data directory now lives on the controlplane's existing/filestorePVC (defaults to{filestore}/kodit)What's kept (still used in templates)
kodit.enabled,kodit.auth,kodit.enrichment,kodit.vectorchord— all still referenced in deployment templatesBreaking change risk
Low. Helm silently ignores unused values keys, so existing overrides with
kodit.imageorkodit.persistencewon't cause deployment failures.Test plan
helm templaterenders without errorskodit.imageorkodit.persistence🤖 Generated with Claude Code