-
Notifications
You must be signed in to change notification settings - Fork 3.5k
feat: Add workflow-level executor plugin settings definition #15440
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
Open
ntny
wants to merge
8
commits into
argoproj:main
Choose a base branch
from
ntny:workflow-level-executor-plugin-configuration
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
1d48c90
Add workflow-level executor plugin settings definition
5841b96
Add workflow-level executor plugin settings definition
1ce09f6
regenerate proto/docs
5269a3d
make workflow-level plugins configurable via env variable
9ec1de1
- add metadata field to executor plugin
a2e59c6
- resolve merge conflicts
976103a
- validate executor plugin metadata
a1ba8cc
- add test on sa mount
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
68 changes: 68 additions & 0 deletions
68
.features/pending/15234-argo-workflow-level-executor-plugin-configuration.md
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,68 @@ | ||
| Description: Add Optional Argo Workflow–Level Configuration for Executor Plugins | ||
| Author: [ntny](https://github.com/ntny) | ||
| Component: General | ||
| Issues: 15234 | ||
|
|
||
| This PR allows configuring the Argo Workflow Executor Plugin for a specific Argo Workflow directly within the Workflow spec. | ||
| This feature is enabled via the `ARGO_WORKFLOW_LEVEL_EXECUTOR_PLUGINS=true` controller env variable | ||
|
|
||
|
|
||
| apiVersion: apps/v1 | ||
| kind: Deployment | ||
| metadata: | ||
| name: workflow-controller | ||
| spec: | ||
| template: | ||
| spec: | ||
| containers: | ||
| - name: workflow-controller | ||
| env: | ||
| - name: ARGO_WORKFLOW_LEVEL_EXECUTOR_PLUGINS | ||
| value: "true" | ||
|
|
||
| Sample executor plugin definition in the Argo workflow spec: | ||
|
|
||
| apiVersion: argoproj.io/v1alpha1 | ||
| kind: Workflow | ||
| metadata: | ||
| name: wf-level-plugin | ||
| namespace: argo | ||
| spec: | ||
| entrypoint: hello-hello-hello | ||
| executorPlugins: | ||
| - metadata: | ||
| name: print-message-plugin | ||
| spec: | ||
| sidecar: | ||
| container: | ||
| name: print-message-plugin | ||
| image: print-message-plugin:latest | ||
| imagePullPolicy: IfNotPresent | ||
| ports: | ||
| - containerPort: 8080 | ||
| resources: | ||
| limits: | ||
| cpu: 500m | ||
| memory: 128Mi | ||
| requests: | ||
| cpu: 250m | ||
| memory: 64Mi | ||
|
|
||
| The definition of the step that uses the plugin is the same for both global and workflow-level specs: | ||
|
|
||
| templates: | ||
| - name: hello-hello-hello | ||
| steps: | ||
| - - name: hello1 | ||
| template: print-message | ||
| arguments: | ||
| parameters: | ||
| - name: message | ||
| value: "hello1" | ||
| - name: print-message # step which use the plugin | ||
| inputs: | ||
| parameters: | ||
| - name: message | ||
| plugin: | ||
| print-message-plugin: | ||
| args: ["{{inputs.parameters.message}}"] |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.