Hi community! I'm analyzing Flyte logs, I've got ...
# ask-the-community
r
Hi community! I'm analyzing Flyte logs, I've got a node ID (e.g. f47398c700ad94d17a86-n0-0-dn50-0). Is there an easy way to trace back to the project and domain?
c
hello - programatically or interacting with the CLI?
r
preferably CLI, but any approach is fine
c
cool, that should be easy using kubectl. try
kubectl describe pod 47398c700ad94d17a86-n0-0-dn50-0
and look for
FLYTE_INTERNAL_TASK_PROJECT
and
FLYTE_INTERNAL_TASK_DOMAIN
envvars
r
cool, thanks a lot!
c
there are probably a handful of ways to fetch the info, so let us know if that doesn't work or you'd prefer a different method
r
all right, thanks a ton!