Boshi Lian
Boshi Lian
here is how to test the example (make sure there is one pod only) ``` kubectl run ping --image=busybox --command=true ping localhost ``` 
linking ct to stream readline should work did you try net8 some .net api does not honor ct or even does not take ct as parameter
may i know where to send PR? WIP https://github.com/tg123/TodosApi
did you try Kubernetes.Aot?
@peter-glotfelty could you please try example? https://github.com/kubernetes-client/csharp/tree/master/examples/aot dotnet publish -r win-x64 @IvanJosipovic seesm too many warnings when introduce trimming to main sdk, not 100% if any bugs introduced by it
may i know why you have your own `SourceGenerationContext` in code? here is the one in aot, you do not have to create a new https://github.com/kubernetes-client/csharp/blob/master/src/KubernetesClient.Aot/SourceGenerationContext.cs
ah i see, this is by design at the moment. but will support it later
yes dump please i will try to repo by calling list
i ran the load test last weekend for whole afternoon, but did not see any leak. code is simple for(;;) { listdeployment; sleep 5s}
my test code ``` using k8s; var config = KubernetesClientConfiguration.BuildDefaultConfig(); IKubernetes client = new Kubernetes(config); Console.WriteLine("Starting Request!"); for (; ;){ var list = client.AppsV1.ListDeploymentForAllNamespaces(); foreach (var item in list.Items) {...