You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use kubebuilder to create a controller to manage CRD, i want to use r.Patch() in controller Reconcile function, but i found the controller-runtime version is v0.1.1, it does not have Patch function.
The latest controller-runtime already implement Patch method, kubernetes-sigs/controller-runtime#235.
I want to ask, how to do if i want use the latest controller-runtime?
I already run dep ensure -v --update sigs.k8s.io/controller-runtime sigs.k8s.io/controller-tools, but it still v0.1.1 version.
kubebuilder version
$ kubebuilder version
Version: version.Version{KubeBuilderVersion:"1.0.8", KubernetesVendor:"1.13.1", GitCommit:"1adf50ed107f5042d7472ba5ab50d5e1d357169d", BuildDate:"2019-01-25T23:14:29Z", GoOs:"unknown", GoArch:"unknown"}
The text was updated successfully, but these errors were encountered:
Set your controller-runtime to the appropriate version in Gopkg.toml (in this case, you'd need to use branch="master" since that commit hasn't been released yet.
I use
kubebuilder
to create a controller to manage CRD, i want to user.Patch()
in controllerReconcile
function, but i found thecontroller-runtime
version isv0.1.1
, it does not havePatch
function.The latest controller-runtime already implement Patch method, kubernetes-sigs/controller-runtime#235.
I want to ask, how to do if i want use the latest controller-runtime?
I already run
dep ensure -v --update sigs.k8s.io/controller-runtime sigs.k8s.io/controller-tools
, but it stillv0.1.1
version.kubebuilder version
The text was updated successfully, but these errors were encountered: