File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ require (
2727 k8s.io/apimachinery v0.35.0
2828 k8s.io/client-go v0.35.0
2929 k8s.io/utils v0.0.0-20251002143259-bc988d571ff4
30- sigs.k8s.io/controller-runtime v0.23.1
30+ sigs.k8s.io/controller-runtime v0.23.3
3131 sigs.k8s.io/yaml v1.6.0
3232)
3333
Original file line number Diff line number Diff line change @@ -469,8 +469,8 @@ modernc.org/strutil v1.0.0/go.mod h1:lstksw84oURvj9y3tn8lGvRxyRC1S2+g5uuIzNfIOBs
469469modernc.org/xc v1.0.0 /go.mod h1:mRNCo0bvLjGhHO9WsyuKVU4q0ceiDDDoEeWDJHrNx8I =
470470sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 h1:jpcvIRr3GLoUoEKRkHKSmGjxb6lWwrBlJsXc+eUYQHM =
471471sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 /go.mod h1:Ve9uj1L+deCXFrPOk1LpFXqTg7LCFzFso6PA48q/XZw =
472- sigs.k8s.io/controller-runtime v0.23.1 h1:TjJSM80Nf43Mg21+RCy3J70aj/W6KyvDtOlpKf+PupE =
473- sigs.k8s.io/controller-runtime v0.23.1 /go.mod h1:B6COOxKptp+YaUT5q4l6LqUJTRpizbgf9KSRNdQGns0 =
472+ sigs.k8s.io/controller-runtime v0.23.3 h1:VjB/vhoPoA9l1kEKZHBMnQF33tdCLQKJtydy4iqwZ80 =
473+ sigs.k8s.io/controller-runtime v0.23.3 /go.mod h1:B6COOxKptp+YaUT5q4l6LqUJTRpizbgf9KSRNdQGns0 =
474474sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 h1:IpInykpT6ceI+QxKBbEflcR5EXP7sU1kvOlxwZh5txg =
475475sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 /go.mod h1:mdzfpAEoE6DHQEN0uh9ZbOCuHbLK5wOm7dK4ctXE9Tg =
476476sigs.k8s.io/randfill v1.0.0 h1:JfjMILfT8A6RbawdsK2JXGBR5AQVfd+9TbzrlneTyrU =
Original file line number Diff line number Diff line change @@ -213,10 +213,10 @@ func main() {
213213 os .Exit (1 )
214214 }
215215
216- if err := ctrl .NewWebhookManagedBy (mgr ). For ( & dwv1.DevWorkspace {}).Complete (); err != nil {
216+ if err := ctrl .NewWebhookManagedBy (mgr , & dwv1.DevWorkspace {}).Complete (); err != nil {
217217 setupLog .Error (err , "failed creating conversion webhook for DevWorkspaces v1alpha1" )
218218 }
219- if err := ctrl .NewWebhookManagedBy (mgr ). For ( & dwv2.DevWorkspace {}).Complete (); err != nil {
219+ if err := ctrl .NewWebhookManagedBy (mgr , & dwv2.DevWorkspace {}).Complete (); err != nil {
220220 setupLog .Error (err , "failed creating conversion webhook for DevWorkspaces v1alpha2" )
221221 }
222222
You can’t perform that action at this time.
0 commit comments