controller-runtime icon indicating copy to clipboard operation
controller-runtime copied to clipboard

Repo for the controller-runtime subproject of kubebuilder (sig-apimachinery)

Results 351 controller-runtime issues
Sort by recently updated
recently updated
newest added

Signed-off-by: Tamal Saha

cncf-cla: yes
size/M
needs-ok-to-test

Details - https://sdk.operatorframework.io/docs/building-operators/golang/advanced-topics/#leader-election

Referencing the Issue created in Operator-SDK - https://github.com/operator-framework/operator-sdk/issues/5514 Technically - When you create an envtest using ginko, and adding resources to the scheme, It looks like cluster wide resources are...

lifecycle/rotten

We use the [OWASP dependency check](https://owasp.org/www-project-dependency-check/) client (v7.0.0) for package verification in our builds. It basically scans go.mod/sum files against an existing database of issues and tells us if there...

I am following the example in https://book.kubebuilder.io/cronjob-tutorial/writing-tests.html, where it creates a Job with a status and calls `client.Create`. I'm doing similar with a third party CRD (tekton's PipelineRun) with a...

Hi, I have ran into similar issues as #245 wherein I try to patch an object status and fetch it immediately in the next reconcile request. I tried using api...

It seems per https://github.com/kubernetes/kubernetes/pull/105520#discussion_r723535829 that `kubectl` is planning to remove rate limiting of the discovery process, preferring to instead let [APF](https://kubernetes.io/docs/concepts/cluster-administration/flow-control/) handle the (often very large) slew of requests it...

In 0.7.0-alpha.4 Calling client.create of an object (e.g. Deployment) with status set preserves the status in the original object passed. In 0.7.0 Calling client.create of an object (e.g. Deployment) with...

lifecycle/rotten

Currently, the certificate is only issued for localhost. With this PR, the IP from `APIServer.SecureServing.ListenAddr.Address` is also included, if it exists. fixes #1751

cncf-cla: yes
ok-to-test

As someone newly hearing about controller-runtime, and how this is something I might use instead of some client-go resources, my first question is about the relationship between controller-runtime and client-go....