Glidepath end to end: from a push to a verified release
Developers write one file and push. Pipelines-as-Code owns everything git-triggered, a broker chains the stages by event, every step is a span in one trace, and nothing reaches a cluster except through a reviewed commit that ArgoCD pulls.
Built
Tekton plus Pipelines-as-Code on plain Kubernetes (ADR-0001).
CDEvents broker with a TokenReview interceptor (ADR-0002).
Git events arrive with a webhook signature that the Pipelines-as-Code GitHub App already validates. A stage finishing is not a git event, so it needs its own path, and that path authenticates the pod itself rather than a credential the platform would have to mint and rotate.
Known gaps
Glidepath keeps a public known-gaps list of problems found building real apps, each with evidence: for example, config-only pushes are not validated yet, and required checks assume every PR is a release PR.