https://github.com/argoproj-labs/hera/blob/main/src/hera/workflows/parameter.py#L94 clears it, so:
with WorkflowTemplate(
name="magic",
entrypoint="main",
arguments=[
Parameter(
name="primary",
description="Primary cluster to operate on.",
default="yeah",
),
],
) as workflow_template:
....
doesnt' work. Is it not possible for a template to set default values?
https://github.com/argoproj-labs/hera/blob/main/src/hera/workflows/parameter.py#L94 clears it, so:
doesnt' work. Is it not possible for a template to set default values?