feat: confidential compute#396
Draft
cloud-j-luna wants to merge 7 commits into
Draft
Conversation
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
…nd propagate data to pricing
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.
Adds per-pod attestation sidecar support for confidential compute workloads using AMD SEV-SNP and Intel TDX, with NVIDIA GPU confidential compute (VFIO passthrough). Tenants request CC via the existing
confidential-compute: trueplacement attribute, no SDL version bump required. The provider automatically selects the appropriate Kata runtime class (kata-qemu-snp,kata-qemu-nvidia-gpu-snp,kata-qemu-tdx,kata-qemu-nvidia-gpu-tdx), applies CC-specific node selectors, switches GPU resources tonvidia.com/pgpufor VFIO, and injects an attestation sidecar into the pod via a fail-closed mutating admission webhook. The sidecar serves an HTTP endpoint inside the Kata VM that collects raw hardware-signed attestation reports (configfs-tsmor/dev/sev-guest) and returns them as is, the provider never produces, inspects or signs attestation evidence. Tenants verify reports independently against trusted parties.New provider REST endpoints (GET
/attestation/directoryand POST/lease/.../attestation/quote) and a lease-attestation CLI command enable the full attestation flow. Tenants can opt out of sidecar injection viaparams.attestation.enabled: falsein the SDL.Local development is supported with
CONFIDENTIAL_COMPUTE=truea single variable that configures Kind with mock runtime handlers, node labels, and a mock TEE provider that produces synthetic reports with correct nonce echo for end-to-end testing without hardware.