From cb99e6a25dc13d834d580a5cacbf707e6c1a6bb7 Mon Sep 17 00:00:00 2001 From: Camila Macedo Date: Fri, 26 Apr 2024 07:37:44 +0100 Subject: [PATCH] :book: Add note to link Controller-Runtime FAQ page --- docs/book/src/faq.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/book/src/faq.md b/docs/book/src/faq.md index b263ec80925..93076428b51 100644 --- a/docs/book/src/faq.md +++ b/docs/book/src/faq.md @@ -1,6 +1,15 @@ # FAQ + + + ## How does the value informed via the domain flag (i.e. `kubebuilder init --domain example.com`) when we init a project? After creating a project, usually you will want to extend the Kubernetes APIs and define new APIs which will be owned by your project. Therefore, the domain value is tracked in the [PROJECT][project-file-def] file which defines the config of your project and will be used as a domain to create the endpoints of your API(s). Please, ensure that you understand the [Groups and Versions and Kinds, oh my!][gvk].