nvcrectl workflow

View as Markdown

nvcrectl workflow render

Renders a Workflow manifest with platform and GPU overrides applied, without connecting to a cluster. Useful for inspecting what the controller would create or diffing override changes.

$nvcrectl workflow render [flags] <workflow.yaml>

Flags

FlagDefaultDescription
--platformautoTarget platform (aws, gcp, azure, oci, mistral, forge)
--gpu-archautoTarget GPU architecture (h100, gb200, gb300)
--nodes-filePath to a YAML file of corev1.Node objects for offline rendering (mutually exclusive with --platform/--gpu-arch)
--outputyamlOutput format: yaml or json
--dry-runfalseValidate against the live API server without creating resources

Example

$# Render with explicit platform and GPU arch overrides
$nvcrectl workflow render \
> --platform aws \
> --gpu-arch h100 \
> my-workflow.yaml