From 42d3ac4879d506cb0fda43a7439e9b9da8346753 Mon Sep 17 00:00:00 2001 From: Sajiyah Salat <109643863+Sajiyah-Salat@users.noreply.github.com> Date: Mon, 4 Sep 2023 06:20:16 +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 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/book/src/faq.md b/docs/book/src/faq.md index 70451071ddc..49daf573790 100644 --- a/docs/book/src/faq.md +++ b/docs/book/src/faq.md @@ -100,7 +100,9 @@ In ideal approach might use client-side apply might seem like the perfect soluti Therefore, you have a few options to workround this scenario such as: -- You can use the option `maxDescLen=0` to remove the description of your CRDs. Following an example: +**By removing the descriptions from CRDs** + +Your CRDs are generated using [controller-gen][controller-gen]. By using the option `maxDescLen=0` to remove the description, you may reduce the size, potentially resolving the issue. To do it you can update the Makefile as the following example and then, call the target `make manifest` to regenerate your CRDs without description, see: ```shell