camel-k
camel-k copied to clipboard
In a specific scenario a new integration pod is created every ~0.5 seconds
Running the following integration in openshift 4.10 with openshift serverless 1.23, on a new namespace, many pods are quickly created and after just a few seconds the worker node is exhausted and it changes to a NotReady state, with hundreds of pods in either Running, Terminated, Pending state.
public class AddToChannel extends RouteBuilder {
public void configure() throws Exception {
rest("/")
.put("/input")
.to("knative:channel/messages");
}
}
Could it be related to #1826? the behavior looks suspiciously similar...