Hi! I am testing a workflow locally, in K8 and in ...
# ask-metaflow
c
Hi! I am testing a workflow locally, in K8 and in K8 with Argo. When I use the client to access metadata I don't have access to the runs with Argo. Is there a parameter I need to set to access metadata from runs with K8 and Argo?
1
s
you may want to set the namespace to None.
Copy code
from metaflow import namespace
namespace(None)
1
that will ensure that all executions are visible to your client
c
that works! Thank you Savin!
how would I revert that to the previous namespace?
a
you can fetch the current namespace through
get_namespace
and assign it to a temp var and invoke
namespace(...)
again. All tags become namespaces.
🙌 1