Tejas Shah
02/16/2024, 9:58 PMMarvin
02/16/2024, 9:58 PMshell
prefect deployment run 'your-deployment-id'
Make sure to replace 'your-deployment-id' with the actual identifier of the deployment you wish to execute. For more information, you can reference the Prefect documentation here: Prefect Docs - QuickstartTejas Shah
02/16/2024, 10:01 PMprefect deployment ls
gives me the following:
Deployments
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Name ┃ ID ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ get-repo-info/my-first-deployment │ 7743d4f3-cc08-4339-a7f9-94b066c78c59 │
└───────────────────────────────────┴──────────────────────────────────────┘
But then doing prefect deployment run '7743d4f3-cc08-4339-a7f9-94b066c78c59'
Throws Deployment '7743d4f3-cc08-4339-a7f9-94b066c78c59' not found!
Marvin
02/16/2024, 10:02 PMshell
prefect deployment run 'get-repo-info/my-first-deployment'
Replace 'get-repo-info/my-first-deployment' with the actual name of your deployment. This matches the naming convention shown in your prefect deployment ls
output, and it mirrors the command structure provided in the earlier Prefect documentation excerpt.Tejas Shah
02/16/2024, 10:02 PMMarvin
02/16/2024, 10:03 PMTejas Shah
02/16/2024, 10:03 PMMarvin
02/16/2024, 10:03 PMTejas Shah
02/16/2024, 10:05 PMMarvin
02/16/2024, 10:05 PM