Hi Team, I am new to Flyte, hence i need your help...
# ask-the-community
v
Hi Team, I am new to Flyte, hence i need your help. I am trying to run the Flyte task in with 3 different configuration in parallel but what i want is them to have different label based on some value from the config, so would like to know is that possible to have different name based on the value of the variable or have some visible tag so that its easy to catch just by looking at the graph. Please do let me know, will appreciate your help
k
you can override the node name. like
Copy code
@workflow
    def wf(a: int) -> int:
        return ft(a=a).with_overrides(node_name="foobar")