From 4d399117b7d6713471993eb5850ae8db96a8a357 Mon Sep 17 00:00:00 2001 From: Barnabas Busa Date: Wed, 12 Jun 2024 14:08:52 +0200 Subject: [PATCH] chore: update plan.run_sh documentation --- docs/docs/api-reference/starlark-reference/plan.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/docs/api-reference/starlark-reference/plan.md b/docs/docs/api-reference/starlark-reference/plan.md index 72f079d07b..47cf3e2408 100644 --- a/docs/docs/api-reference/starlark-reference/plan.md +++ b/docs/docs/api-reference/starlark-reference/plan.md @@ -613,6 +613,10 @@ The `run_sh` instruction executes a one-time execution task. It runs the bash co # MANDATORY run = "mkdir -p kurtosis && echo $(ls)", + # The name of the container, as a string + # OPTIONAL (Default: task--UUID) + name = "curl-job" + # Image the command will be run on # OPTIONAL (Default: badouralix/curl-jq) image = "badouralix/curl-jq",