From 2626db67f438df0ef06c97bf0d5634ccb1a584c7 Mon Sep 17 00:00:00 2001 From: Chok Yip Lau Date: Sun, 14 May 2023 23:28:51 -0400 Subject: [PATCH] Added link for cronjob tutorial --- docs/book/src/reference/webhook-for-core-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/src/reference/webhook-for-core-types.md b/docs/book/src/reference/webhook-for-core-types.md index a27cc1f7e2e..9fce8a912b1 100644 --- a/docs/book/src/reference/webhook-for-core-types.md +++ b/docs/book/src/reference/webhook-for-core-types.md @@ -1,7 +1,7 @@ # Admission Webhook for Core Types It is very easy to build admission webhooks for CRDs, which has been covered in -the CronJob tutorial. Given that kubebuilder doesn't support webhook scaffolding +the [CronJob tutorial](https://github.com/kubernetes-sigs/kubebuilder/tree/master/docs/book/src/cronjob-tutorial). Given that kubebuilder doesn't support webhook scaffolding for core types, you have to use the library from controller-runtime to handle it. There is an [example](https://github.com/kubernetes-sigs/controller-runtime/tree/master/examples/builtins) in controller-runtime.