feat: harden BYOC deployment workflows - #419
Merged
alongubkin merged 9 commits intoAug 18, 2026
Merged
Conversation
Greptile SummaryThe PR hardens BYOC deployment lifecycle behavior and expands CLI, compute-selection, and deployment-configuration capabilities.
Confidence Score: 5/5The PR appears safe to merge. No blocking failure remains.
|
| Filename | Overview |
|---|---|
| crates/alien-cli/src/commands/packages.rs | Adds project-scoped package pagination, inspection, artifact selection, secure downloading, and base-path-preserving API URL construction; the previously reported URL-prefix issue is fixed. |
| crates/alien-deployment/src/manager_api_transport.rs | Makes deployment cleanup idempotent when late manager operations report that the deployment no longer exists. |
| crates/alien-core/src/instance_catalog.rs | Extends compute selection metadata for nested virtualization and cloud-specific machine capabilities. |
| packages/core/src/compute-cluster.ts | Exposes compute-pool failure-domain spread configuration through the TypeScript core API. |
| crates/alien-deploy-cli/src/lib.rs | Applies embedded deployment CLI branding and configuration defaults consistently. |
Sequence Diagram
sequenceDiagram
participant User
participant CLI as Alien CLI
participant Platform as Platform API
participant Storage as Artifact Storage
User->>CLI: packages list/get/download
CLI->>Platform: GET base-prefix/v1/packages
Platform-->>CLI: Package metadata and artifact URL
CLI->>Storage: Download without platform bearer token
Storage-->>CLI: Artifact bytes
CLI->>CLI: Verify SHA-256 and write destination
Reviews (9): Last reviewed commit: "fix(cli): harden package listing and dow..." | Re-trigger Greptile
…-byoc-deployment-workflows
…-byoc-deployment-workflows # Conflicts: # client-sdks/platform/rust/src/lib.rs
alongubkin
force-pushed
the
alon/alien-322-harden-byoc-deployment-workflows
branch
from
August 18, 2026 22:59
21404dd to
beaea7c
Compare
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
Validation