Hi, let’s say I’m using Kubernetes agent, at the m...
# ask-community
m
Hi, let’s say I’m using Kubernetes agent, at the moment there is a flow running. CI/CD at this moment re-deploy the agent, what will happen with the running flow?
e
I only tried this with
DockerAgent
, not kube, and it was some time ago. So my info may be off. I killed a
DockerAgent
after it picked up a flow from server and spinned up a docker container for the flow to run. Flow continued its execution, and server was continuously updated about the flow run state. I'm inclined to believe other agents behave similarly as well. That is, fire and forget the flow run. Obvious exception would be
LocalAgent
😅
👍 1
k
@emre is right that it will continue running since it’s a KubernetesJob already.
m
yes, that make sense. Thank you!)