fix(helm): use curl instead of wget for token job API calls#31
Merged
charlie83Gs merged 1 commit intomainfrom Mar 25, 2026
Merged
fix(helm): use curl instead of wget for token job API calls#31charlie83Gs merged 1 commit intomainfrom
charlie83Gs merged 1 commit intomainfrom
Conversation
The Hatchet image's BusyBox wget does not support --method=PATCH. Switch to curl which is available in the image and supports all HTTP methods natively. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
charlie83Gs
added a commit
that referenced
this pull request
Mar 27, 2026
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
3 tasks
charlie83Gs
added a commit
that referenced
this pull request
Apr 20, 2026
…onPipeline (Phase 2 #32) Adds ``kt_hatchet.composition.resolve_phase_settings(state, graph_id, phase)`` — the shared helper that translates a running graph's ``GraphConfig`` into the ``phase_settings`` dict ``DecompositionPipeline`` now accepts (#31 / #276). Fails fast on resolver error: a graph opting into a narrower composition MUST NOT silently widen to Settings defaults on a transient DB hiccup — matches the tenancy-invariant posture of ``_resolve_composition_selectors`` in ``web_search``. Wired into the two Hatchet tasks that construct ``DecompositionPipeline`` directly: - ``decompose_chunk_task`` (worker-search.workflows.search) - ``decompose_source_task`` (worker-search.workflows.decompose) Worker-nodes call sites (``GatherFactsPipeline``, ``BuildingPipeline``, ``NodePipeline``) go through ``AgentContext`` which doesn't expose ``graph_id`` — threading there lands in the companion #33 PR once ``AgentContext`` grows the knob. 5 new unit tests on the helper cover: composition present, graph_id None fallback, services None fallback, resolver-raises-propagates (authorization guard), unknown-phase-empty-dict. Co-Authored-By: Claude Opus 4.7 (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
The Hatchet image's BusyBox
wgetdoes not support--method=PATCH. The token job successfully generates the token but fails when trying to patch the Kubernetes secret.Switch to
curl(available in the Hatchet image) for all K8s API calls in the token job.Test plan
helm templaterenders correctly🤖 Generated with Claude Code