Parameters
string
required
The workflow slug.
uuid.UUID
required
The ID of the workflow release to deploy.
[]string
required
The clusters to deploy the release to.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
deployment, err := client.Workflows.DeployRelease(ctx,
workflow.Slug,
release.ID,
[]string{"production"},
)
func (workflowClient) DeployRelease(
ctx context.Context,
workflowSlug string,
releaseID uuid.UUID,
clusterSlugs []string,
) (*workflows.WorkflowReleaseDeployment, error)
deployment, err := client.Workflows.DeployRelease(ctx,
workflow.Slug,
release.ID,
[]string{"production"},
)
Was this page helpful?