Is there a way to override tags associated with a ...
# ask-community
a
Is there a way to override tags associated with a job when executing dagster jobs using REST API?
To ellaborate my use case. I register a job with
dagster-k8s/config
tag to specify 1 vcpu for pod. But for a certain execution I want to assign 2 vcpu. How can I override this tag at runtime?
image.png
o
hi @Akhil! I'm not familiar with what REST API you're using here (we expose a GraphQL API for launching jobs, as well as a python one). In either case, when launching a job, you can supply tags which will override any tags defined on the job itself. So for your case, you could simply provide a new
dagster-k8s/config
tag when launching the job , with the updated values. This would override the default behavior
a
thanks @owen got it working
🌈 1