From ef166e9f700446a47190b9fa5f172139e6153519 Mon Sep 17 00:00:00 2001 From: Tianchu Zhao Date: Thu, 24 Jun 2021 23:30:02 +1000 Subject: [PATCH 1/2] docs(executor): document k8s executor behaviour with program warnings Signed-off-by: Tianchu Zhao --- docs/workflow-executors.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/workflow-executors.md b/docs/workflow-executors.md index d00720b23145..f2c3563ab4af 100644 --- a/docs/workflow-executors.md +++ b/docs/workflow-executors.md @@ -38,6 +38,8 @@ The executor to be used in your workflows can be changed in [the configmap](./wo * Operations performed against the local Kubelet * Artifacts: * Output artifacts must be saved on volumes (e.g. [emptyDir](empty-dir.md)) and not the base image layer (e.g. `/tmp`) +* Step/Task result: + * Warnings that normally goes to stderr will get captured in a step or a dag task's `outputs.result`. May require changes if your pipeline is condition on `steps/tasks.name.outputs.result` * Configuration: * Additional Kubelet configuration maybe needed @@ -55,6 +57,8 @@ The executor to be used in your workflows can be changed in [the configmap](./wo * Log retrieval and container operations performed against the remote Kubernetes API * Artifacts: * Output artifacts must be saved on volumes (e.g. [emptyDir](empty-dir.md)) and not the base image layer (e.g. `/tmp`) +* Step/Task result: + * Warnings that normally goes to stderr will get captured in a step or a dag task's `outputs.result`. May require changes if your pipeline is condition on `steps/tasks.name.outputs.result` * Configuration: * No additional configuration needed. From acc46f95290382cf4c88cc6f0eca34232f5c0213 Mon Sep 17 00:00:00 2001 From: Tianchu Zhao Date: Thu, 24 Jun 2021 23:54:21 +1000 Subject: [PATCH 2/2] docs(executor): fix typo Signed-off-by: Tianchu Zhao --- docs/workflow-executors.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/workflow-executors.md b/docs/workflow-executors.md index f2c3563ab4af..8d10281fd197 100644 --- a/docs/workflow-executors.md +++ b/docs/workflow-executors.md @@ -39,7 +39,7 @@ The executor to be used in your workflows can be changed in [the configmap](./wo * Artifacts: * Output artifacts must be saved on volumes (e.g. [emptyDir](empty-dir.md)) and not the base image layer (e.g. `/tmp`) * Step/Task result: - * Warnings that normally goes to stderr will get captured in a step or a dag task's `outputs.result`. May require changes if your pipeline is condition on `steps/tasks.name.outputs.result` + * Warnings that normally goes to stderr will get captured in a step or a dag task's `outputs.result`. May require changes if your pipeline is conditioned on `steps/tasks.name.outputs.result` * Configuration: * Additional Kubelet configuration maybe needed @@ -58,7 +58,7 @@ The executor to be used in your workflows can be changed in [the configmap](./wo * Artifacts: * Output artifacts must be saved on volumes (e.g. [emptyDir](empty-dir.md)) and not the base image layer (e.g. `/tmp`) * Step/Task result: - * Warnings that normally goes to stderr will get captured in a step or a dag task's `outputs.result`. May require changes if your pipeline is condition on `steps/tasks.name.outputs.result` + * Warnings that normally goes to stderr will get captured in a step or a dag task's `outputs.result`. May require changes if your pipeline is conditioned on `steps/tasks.name.outputs.result` * Configuration: * No additional configuration needed.