Conversation
…s, deployer commands)
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.
Edge Transform — api (PR 1, merge first)
Adds the
transform.*resource: declarative, CEL-scoped request/response transforms at the parapet proxy. Design:SPEC-cel-transform.md(the chosen middle path between forward-auth hacks and a WASM runtime — no user code).TransformPhaseenum (request|response);TransformRule(required*TransformPhase, CELfilter, orderedops,mode,priority);TransformOp(set-header, remove-header, rewrite-path, rewrite-query, redirect, set-status, cors).Transforminterface (get/list/set/delete) + client.X-Forwarded-*,X-Real-IP,X-Auth-*, wafclaim), redirect$uri/open-redirect guard.modeis""(enforce) orshadowonly — matches the parapet wire contract.role.go:transform.{get,list,set,delete}; reads are non-public-bindable (can carry credentials) but delegatable.LocationFeatures.Transform.DeployerCommandTransform{Set,Delete}.Merge first — the Go consumers (apiserver, deployer, mcp, deploys) re-pin
github.com/deploys-app/apito this commit.go build/vet,gofmt,go generateclean.Part of the Edge Transform feature — consumer PRs (re-pin to the merged commit of this PR)
Merge order: this (api) → deployer → apiserver; parapet-ingress-controller before apiserver is deployed; console/mcp/deploys/docs any time after api.