Implement full Restium declarative REST client#1
Merged
mikkeldamsgaard merged 1 commit intomainfrom Mar 15, 2026
Merged
Conversation
Complete implementation across 4 epics (19 stories): - Epic 1: CLI foundation with clap, structured logging, YAML spec parsing, validation - Epic 2: HTTP client with TLS, bearer/basic/API key/OIDC/mTLS authentication - Epic 3: Dependency graph, state discovery, diff computation, resource CRUD, reconciliation - Epic 4: Sidecar mode, distroless Docker image, CI/CD pipelines, docs, Helm chart Code review fixes applied to Epic 4 stories: - Sidecar: spurious wakeup safety (loop around thread::park), success logging - CI/CD: hardened cargo publish idempotency, fixed script injection in auto-tag - Helm: conditional envFrom, idiomatic nindent in configmap template - README: corrected --spec flag placement, added example column to spec tables - Makefile: added prerequisite docs for cross and docker-multiarch targets 169 tests, clippy clean, fmt clean. 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
What's included
Epic 1: Declarative Spec & CLI Foundation
reconcileandvalidatesubcommandsEpic 2: Secure API Connectivity
--insecure-tlsEpic 3: Resource Reconciliation
${resource.output.field}reference resolutionEpic 4: Production Deployment
--sidecarmode for K8s sidecar containersTest plan
make lint— clippy --all-targets + fmt --checkmake test— 169 tests pass (unit + e2e)cargo build --release— produces binary🤖 Generated with Claude Code