feat: Add multi-workspace Seqera Platform structure#184
Draft
edmundmiller wants to merge 3 commits intomainfrom
Draft
feat: Add multi-workspace Seqera Platform structure#184edmundmiller wants to merge 3 commits intomainfrom
edmundmiller wants to merge 3 commits intomainfrom
Conversation
…ing errors - Add multipart upload permissions to S3 IAM policy for large files >5GB - Remove problematic closures from publishDir tags configuration - Update policy version hash to trigger compute environment recreation - Fixes workflow failures with S3 copy operations and casting errors
🗑️ Removed Legacy Files: - seqerakit CLI config files (*.yml) - replaced by Terraform provider approach - Legacy GitHub workflow (deploy-seqerakit.yml) - marked as TODO/placeholder - Development Pulumi config (Pulumi.dev.yaml) - Empty tests directory with only .pyc files - Cache directories (.pytest_cache, .mypy_cache, .ruff_cache, __pycache__) - SDK build artifacts (build/, *.egg-info/) ✅ Kept Active Infrastructure: - seqerakit/current-env-*.json - used by Terraform provider (constants.py) - seqerakit/configs/nextflow-*.config - used by compute environments - Complete src/ modular structure - restored from parent commit - SDK source code in sdks/seqera/pulumi_seqera/ 🏗️ Architecture Migration: Project migrated from seqerakit CLI approach to native Terraform provider. The .yml files were CLI wrappers around .json specs, now obsolete. Result: Removed ~15 legacy files while preserving all active infrastructure.
Create new pulumi/seqera_platform directory with support for multiple independent Seqera Platform workspaces. This enables managing separate workspaces with different configurations while sharing common code. Structure: - shared/: Reusable modules for providers, infrastructure, and integrations - awsmegatests/: Full workspace with CPU, GPU, and ARM compute environments - resource_optimization/: Focused workspace with CPU-only for resource testing Each workspace is an independent Pulumi project with workspace-specific configuration defined in workspace_config.py. The shared modules are imported via sys.path manipulation to avoid code duplication. 🤖 Generated with Claude Code (https://claude.com/claude-code) Co-Authored-By: Claude <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
Create new
pulumi/seqera_platformdirectory with support for multiple independent Seqera Platform workspaces. This enables managing separate workspaces with different configurations while sharing common code.Structure
Workspaces
AWS Megatests
nf-core-awsmegatestsResource Optimization
nf-core-resource-optimizationKey Features
shared/module to avoid duplicationworkspace_config.pycontrols which resources to deploypulumi/AWSMegatests/remains untouchedNext Steps
awsmegatestsworkspace in a dev stackresource_optimizationworkspaceFiles Changed
🤖 Generated with Claude Code