feat: Add support for new GCP and Azure features [COMP-1463, COMP-1464]#606
Open
cristianrcv wants to merge 8 commits intomasterfrom
Open
feat: Add support for new GCP and Azure features [COMP-1463, COMP-1464]#606cristianrcv wants to merge 8 commits intomasterfrom
cristianrcv wants to merge 8 commits intomasterfrom
Conversation
This was referenced Apr 10, 2026
- WIF (Workload Identity Federation) support for Google credentials with --mode=workload-identity, --service-account-email, --workload-identity-provider, and --token-audience options - Network tags (--network-tags) with VPC requirement and GCP format validation, plus --network and --subnetwork options - Machine type selection: --head-job-machine-type (single) and --compute-jobs-machine-type (comma-separated list with wildcard support), mutually exclusive with instance templates - Boot disk image (--boot-disk-image) with format validation for projects/*/global/images/*, family paths, and batch-* short names - Fusion Snapshots (--fusion-snapshots) toggle requiring Fusion v2 All features include CLI validation matching backend/frontend rules. Code will compile once tower-java-sdk is bumped to include the new fields on GoogleSecurityKeys and GoogleBatchConfig. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Upgrade tower-java-sdk from 1.114.0 to 1.133.0 to include new fields on GoogleSecurityKeys and GoogleBatchConfig - Add bash integration test script for all COMP-1463 features Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Add Azure Entra (service principal) credentials support (add/update) - Add managed identity options (head/pool client IDs and resource IDs) for both Forge and Manual Azure Batch compute environments - Add VNet/subnet support (--subnet-id) for private network isolation - Add dual pool mode (--dual-pool) with separate head and worker pool configuration for Forge mode, and --worker-pool for Manual mode - Add job max wall clock time option (--job-max-wall-clock-time) - Replace JobCleanupPolicy enum with 3 boolean toggles: --delete-jobs-on-completion, --delete-tasks-on-completion, --terminate-jobs-on-completion Note: requires tower-java-sdk bump to >= 1.133.0 for new model fields. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Bump tower-java-sdk from 1.114.0 to 1.133.0 for new Azure Batch model fields (managed identity, subnet, dual pool, wall clock time, cleanup toggles) - Add bash integration test script for all new Azure Batch CLI features Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…DK 1.133.0 bump Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Fix AzBatchConfig.deleteJobsOnCompletion mock response: changed from string "on_success" to boolean true after field type change in SDK - Switch request body matchers from exact string to json() partial matching for pipeline and label mocks to handle new serialized fields in WorkflowLaunchRequest, AssociatePipelineLabelsRequest, and CreateLabelRequest Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…eflection Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
fda15a9 to
07e1f8b
Compare
…aalVM reflection Co-Authored-By: Claude Sonnet 4.6 <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 GCP
Closes COMP-1463 — Make new platform features available via CLI.
--mode=workload-identitywith--service-account-email,--workload-identity-provider,--token-audienceoptions for Google credentials (PR #10346)--network-tags(comma-separated) with--network/--subnetworkoptions and GCP format validation (PR #10416)--head-job-machine-type(single) and--compute-jobs-machine-type(comma-separated, wildcard support), mutually exclusive with instance templates (PRs #10488, #10532)--boot-disk-imagewith format validation for project paths, family paths, and batch short names (PR #10484)--fusion-snapshotstoggle requiring--fusion-v2(PR #10751)All features include CLI-side validation matching backend/frontend rules.
Summary Azure
tw credentials add azure-entra)--subnet-id) for private network isolation--dual-pool) with separate head and worker pool configuration for Forge, and--worker-poolfor Manual mode--job-max-wall-clock-time)JobCleanupPolicyenum with 3 boolean toggles:--delete-jobs-on-completion,--delete-tasks-on-completion,--terminate-jobs-on-completionNote: Requires tower-java-sdk bump to >= 1.133.0 for new model fields. Code will not compile until the SDK is updated.
Platform PRs implemented