Skip to content
Open
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
13 changes: 13 additions & 0 deletions content/user-guide/getting-started/running-your-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,22 @@ When task and workflow code is registered:

To run the workflow on {{< key product_name >}} in the cloud, use the [`--remote` option](../../api-reference/union-cli#union-cli-commands) and the

{{< variant flyte >}}
{{< markdown >}}
```shell
$ export FLYTE_IMAGE_REGISTRY=localhost:30000
$ {{< key cli >}} run --remote -env FLYTE_IMAGE_REGISTRY=${FLYTE_IMAGE_REGISTRY} --project my-project --domain development hello_world.py hello_world_wf
```
{{< /markdown >}}
{{< /variant >}}

{{< variant serverless byoc selfmanaged >}}
{{< markdown >}}
```shell
$ {{< key cli >}} run --remote --project my-project --domain development hello_world.py hello_world_wf
```
{{< /markdown >}}
{{< /variant >}}

The output displays a URL that links to the workflow execution in the UI:

Expand Down