use case is that right now my pods are <some_ha...
# flyte-support
l
use case is that right now my pods are <some_hash>-dn0-n0-dn0-chief-0 etc. Which makes it hard to identify what job they belong to
🙏 1
f
Check the label
l
not a bad idea 😂
is there a k8s command to get pods with a certain label, probably is I guess
f
Labels always will have execution id
Yup kubectl -o I think
l
can I set labels on the TFJob pods individually?
I've set them on the workflow with a launch plan
f
Yup Pass That when you run the execution
They will get passed down
l
using @task decorator?
ah ok, so its the labels sent to the workflow
so all task pods will have same labels
Im trying to identify a eval job vs a training job
f
use different workflows
a
is there a k8s command to get pods with a certain label
kubectl get pod -l <your-label> -n <your-namespace>