From 1308b07e452d74b055e989ebe9b25a5ff1cb8cc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20M=C3=A9sz=C3=A1ros?= Date: Mon, 2 Dec 2024 15:19:35 +0100 Subject: [PATCH] docs: fix FAQ links MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Attila Mészáros --- docs/content/en/docs/faq/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/en/docs/faq/_index.md b/docs/content/en/docs/faq/_index.md index 79264332ef..ed0e6c6a80 100644 --- a/docs/content/en/docs/faq/_index.md +++ b/docs/content/en/docs/faq/_index.md @@ -56,7 +56,7 @@ io.fabric8.kubernetes.client.KubernetesClientException: Failure executing: GET a ``` To restrict the operator to a set of namespaces, you may override which namespaces are watched by a reconciler -at [Reconciler-level configuration](./configuration.md#reconciler-level-configuration): +at [Reconciler-level configuration](../configuration.md#reconciler-level-configuration): ```java Operator operator; @@ -68,7 +68,7 @@ operator.register(reconciler, configOverrider -> Note that configuring the watched namespaces can also be done using the `@ControllerConfiguration` annotation. Furthermore, you may not be able to list CRDs at startup which is required when `checkingCRDAndValidateLocalModel` -is `true` (`false` by default). To disable, set it to `false` at [Operator-level configuration](./configuration.md#operator-level-configuration): +is `true` (`false` by default). To disable, set it to `false` at [Operator-level configuration](../configuration#operator-level-configuration): ```java Operator operator = new Operator( override -> override.checkingCRDAndValidateLocalModel(false));