From 9c10cd1b2585456f047c622bc1503ba76fe142c9 Mon Sep 17 00:00:00 2001 From: SmritiSatyanV <94349093+SmritiSatyanV@users.noreply.github.com> Date: Tue, 20 Sep 2022 15:52:09 +0530 Subject: [PATCH] update launch_plan.go (#354) * update launch_plan.go add links to activating and deactivating a launch plan Signed-off-by: SmritiSatyanV smriti@union.ai * render correctly Fix rendering Signed-off-by: SmritiSatyanV smriti@union.ai --- flytectl/cmd/get/launch_plan.go | 5 +++-- flytectl/cmd/update/launch_plan.go | 5 ++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/flytectl/cmd/get/launch_plan.go b/flytectl/cmd/get/launch_plan.go index edd7ea7c38..f83a1d1d4b 100644 --- a/flytectl/cmd/get/launch_plan.go +++ b/flytectl/cmd/get/launch_plan.go @@ -23,9 +23,10 @@ Retrieve all launch plans within the project and domain: flytectl get launchplan -p flytesnacks -d development .. note:: - The terms launchplan/launchplans are interchangeable in these commands. + + The terms launchplan/launchplans are interchangeable in these commands. - Retrieve a launch plan by name within the project and domain: +Retrieve a launch plan by name within the project and domain: :: diff --git a/flytectl/cmd/update/launch_plan.go b/flytectl/cmd/update/launch_plan.go index 87af549359..369f756cd7 100644 --- a/flytectl/cmd/update/launch_plan.go +++ b/flytectl/cmd/update/launch_plan.go @@ -16,17 +16,16 @@ import ( const ( updateLPShort = "Updates launch plan status" updateLPLong = ` -Activates a launch plan which activates the scheduled job associated with it: +Activates a ` + "`launch plan `__" + ` which activates the scheduled job associated with it: :: flytectl update launchplan -p flytesnacks -d development core.control_flow.merge_sort.merge_sort --version v1 --activate -Archives (deactivates) a launch plan which deschedules any scheduled job associated with it: +Archives ` + "`(deactivates) `__" + ` a launch plan which deschedules any scheduled job associated with it: :: flytectl update launchplan -p flytesnacks -d development core.control_flow.merge_sort.merge_sort --version v1 --archive - Usage ` )