The Kubernetes client-go package includes a good example for creating a single deployment using the client-go api.
I want to create and destroy many kubernet resources without waiting for each HTTP request to complete.
Is it possible to use client-go api asynchronously?
Are there methods like the ones below that are safe for calling from multiple goroutines at the same time?
resultPod, err := clientset.CoreV1().Pods("default").Create(desiredPod)
source share