Phase 4: Full Orchestration Integration#17
Merged
vdemeester merged 4 commits intomainfrom Feb 6, 2026
Merged
Conversation
- Add results.go with ReadResultFromPath and CollectResults helpers - Mount temp directory to /tekton/results in containers - Collect result files after container execution - Update ReadResult to use path-based reading - Update TODO to mark Phase 3 complete TDD approach: tests written first, then implementation. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Use BuildDAG and ExecuteParallel for parallel task execution - Expand matrix tasks before building DAG - Evaluate when conditions for conditional task execution - Track and pass results between tasks - Execute finally tasks after main pipeline (even on error) This enables: - Parallel execution of independent tasks - Matrix builds (task runs for each parameter combination) - Conditional task execution (when clauses) - Result passing between dependent tasks Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add substituteVariables function for Tekton variable replacement - Support $(params.name) with string, array, and object params - Support $(tasks.taskname.results.resultname) for result passing - Support $(workspaces.name.path) and $(context.*) variables - Apply substitution to step scripts, commands, args, and env Result passing between tasks now works correctly. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <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
Changes
Results Capture
results.gowithReadResultFromPathandCollectResultshelpers/tekton/resultsin containersOrchestrator Integration
BuildDAGandExecuteParallelfor parallel task executionParameter Substitution
$(params.name)with string, array, and object params$(tasks.taskname.results.resultname)for result passing$(workspaces.name.path)and$(context.*)variablesTest plan
mallet run examples/simple/hello-pipelinerun.yaml- params workmallet run examples/simple/results-pipelinerun.yaml- results pass between tasks🤖 Generated with Claude Code