How does `argo-workflows trigger` work? What does ...
# ask-metaflow
s
How does
argo-workflows trigger
work? What does it need? How does it trigger the flow?
From what I've read in the source code, it needs access to the kubernetes cluster using kubectl right?
So everything related to running in kubernetes needs kubeconfig to access the cluster?
@kubernetes
as well?
a
correct, @kubernetes uses standard kubernetes library and default credentials, so you need to have kubernetes creds in your environment for it to work. It doesn't directly use
kubectl
binary, just the official python libraries for kubernetes
but yes a good rule of thumb is, if kubectl works in your env, @kubernetes will too
s
Oh, okay, thank you!