controller-runtime
controller-runtime copied to clipboard
Repo for the controller-runtime subproject of kubebuilder (sig-apimachinery)
In the documentation for sigs.k8s.io/controller-runtime/pkg/client and similarly the builder docs, examples like these are given: ``` podList := &corev1.PodList{} err = cl.List(context.Background(), podList, client.InNamespace("default")) ``` and while that does work...
Today, there are typically 2 types of operators, those that watch a bunch of namespaces and those that watch a single namespace. If an operator is watching the entire cluster,...
This PR introduces a configurable standalone server for serving pprof to manager, just like the health and metrics server. fixes #1779 Additional thoughts: I've been aware of `metricsExtraHandlers` introduced in...
Hello! Our org has built an operator scaffolded by Kubebuilder that uses controller-runtime (v0.11.0). For reasons I won't get into (but we're trying to move away from this!), we deploy...
Hi, Is there any released version of setup-envtest, we can't only rely on "latest" version for our CI pipeline. Thanks !
Originally we assumed `KUBECONFIG` env var would override the search directory for configs and allow us to specify exactly the config we wanted. But it appears there is no way...
Hi All, We are seeing a lot of error logs when running our operator into production. And we can't figure out what is happening. The basic flow of what we...
Currently it seems only `labelSelector` is supported - https://github.com/kubernetes-sigs/controller-runtime/blob/master/pkg/client/fake/client.go#L423
Hello, I made a operator to create Custom Resources and now I'm trying to create a CLI to request them with controller-runtime. Every thing is fine for my operator but...
This PR adds a WebhookWrapper to enable wrapping the webhook HTTP handler. The use case is to enable tracing/middleware to be configured on the webhook server, for example: ```go import...