From b722af29970d8aafa09abb92992489a89d41c68c Mon Sep 17 00:00:00 2001 From: Sajiyah Salat <109643863+Sajiyah-Salat@users.noreply.github.com> Date: Mon, 11 Sep 2023 08:13:21 +0530 Subject: [PATCH] Update docs/book/src/faq.md Co-authored-by: Camila Macedo <7708031+camilamacedo86@users.noreply.github.com> --- docs/book/src/faq.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/book/src/faq.md b/docs/book/src/faq.md index 4d86d49e28d..87fbcfdc109 100644 --- a/docs/book/src/faq.md +++ b/docs/book/src/faq.md @@ -113,6 +113,7 @@ Your CRDs are generated using [controller-gen][controller-gen]. By using the opt # is created by K8s API to store the latest version of the resource ( kubectl.kubernetes.io/last-applied-configuration). # However, it has a size limit and if the CRD is too big with so many long descriptions as this one it will cause the failure. $(CONTROLLER_GEN) rbac:roleName=manager-role crd:maxDescLen=0 webhook paths="./..." output:crd:artifacts:config=config/crd/bases +``` You can review the design of your APIs and see if it has not more specs than should be by hurting single responsibility principle for example. So that you might to re-design them.