Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update CRD - add options to control Test Workflow orchestration #926

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1709,6 +1709,9 @@ spec:
paused:
description: pause the step initially
type: boolean
pure:
description: mark the step as pure, applying optimizations to merge the containers together
type: boolean
retry:
description: policy for retrying the step
properties:
Expand Down Expand Up @@ -6435,6 +6438,9 @@ spec:
paused:
description: pause the step initially
type: boolean
pure:
description: mark the step as pure, applying optimizations to merge the containers together
type: boolean
retry:
description: policy for retrying the step
properties:
Expand Down Expand Up @@ -9357,6 +9363,9 @@ spec:
paused:
description: pause the step initially
type: boolean
pure:
description: mark the step as pure, applying optimizations to merge the containers together
type: boolean
retry:
description: policy for retrying the step
properties:
Expand Down Expand Up @@ -10613,6 +10622,16 @@ spec:
type: string
type: object
type: array
system:
description: system configuration to define the orchestration behavior
properties:
isolatedContainers:
description: disable the behavior of merging multiple operations in a single container
type: boolean
pureByDefault:
description: assume all the steps are pure by default
type: boolean
type: object
use:
description: templates to include at a top-level of workflow
items:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1692,6 +1692,9 @@ spec:
paused:
description: pause the step initially
type: boolean
pure:
description: mark the step as pure, applying optimizations to merge the containers together
type: boolean
retry:
description: policy for retrying the step
properties:
Expand Down Expand Up @@ -6324,6 +6327,9 @@ spec:
paused:
description: pause the step initially
type: boolean
pure:
description: mark the step as pure, applying optimizations to merge the containers together
type: boolean
retry:
description: policy for retrying the step
properties:
Expand Down Expand Up @@ -9172,6 +9178,9 @@ spec:
paused:
description: pause the step initially
type: boolean
pure:
description: mark the step as pure, applying optimizations to merge the containers together
type: boolean
retry:
description: policy for retrying the step
properties:
Expand Down Expand Up @@ -10371,6 +10380,16 @@ spec:
type: string
type: object
type: array
system:
description: system configuration to define the orchestration behavior
properties:
isolatedContainers:
description: disable the behavior of merging multiple operations in a single container
type: boolean
pureByDefault:
description: assume all the steps are pure by default
type: boolean
type: object
type: object
required:
- spec
Expand Down