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

(docs) Add more context to the WorkingDirectory and change Api to API #1730

Merged
merged 1 commit into from
Jul 11, 2023
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 @@ -29,10 +29,13 @@
@Getter
@NoArgsConstructor
@Schema(
title = "Run tasks sequentially sharing the same working directory",
description = "By default, Kestra will launch each task on a fresh working directory and on a new worker instance.\n" +
"This task will run sequentially keeping the same filesystem allowing reuse of previous task files on next tasks and" +
"keeping track of execution time for each tasks. It can only runs runnable tasks as tasks will be run immediately on the worker"
title = "Run tasks sequentially in the same working directory",
description = "Tasks are stateless by default. Kestra will launch each task within a temporary working directory on a Worker.\n" +
"The `WorkingDirectory` task allows reusing the same file system's working directory across multiple tasks \n" +
"so that multiple sequential tasks can use output files from previous tasks without having to use the `{{outputs.taskId.outputName}}` syntax." +
"Note that the `WorkingDirectory` only works with runnable tasks because those tasks are executed directly on the Worker." +
"This means that using flowable tasks such as the `Parallel` task within the `WorkingDirectory` task will not work." +
"The `WorkingDirectory` task requires Kestra>=0.9.0."
)
@Plugin(
examples = {
Expand Down
4 changes: 2 additions & 2 deletions ui/src/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@
}
},
"title": "Title",
"api": "Api",
"api": "API",
"expand error": "Expand only failed task",
"expand all": "Expand all",
"collapse all": "Collapse all",
Expand Down Expand Up @@ -915,7 +915,7 @@
}
},
"title": "Titre",
"api": "Api",
"api": "API",
"expand error": "Afficher uniquement les erreurs",
"expand all": "Afficher tout",
"collapse all": "Masquer tout",
Expand Down