From acf6c8f46aba28d90c93a6e5d0b79d63e1ca5874 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaros=C5=82aw=20Pieszka?= Date: Tue, 17 Dec 2024 08:49:01 +0100 Subject: [PATCH] `skip-reconciliation` label - documentation update (#1582) * Docs update - skip-reconciliation * Update docs/contributor/07-10-runtime-reconciler.md Co-authored-by: Iwona Langer * Update docs/contributor/07-10-runtime-reconciler.md Co-authored-by: Iwona Langer --------- Co-authored-by: Iwona Langer --- docs/contributor/07-10-runtime-reconciler.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/contributor/07-10-runtime-reconciler.md b/docs/contributor/07-10-runtime-reconciler.md index 4ca393b819..f3b4d2b2e9 100644 --- a/docs/contributor/07-10-runtime-reconciler.md +++ b/docs/contributor/07-10-runtime-reconciler.md @@ -4,10 +4,12 @@ Runtime Reconciler is an application that performs reconciliation tasks on SAP B ## Details -Currently, there is one task for Runtime Reconciler. It reconciles BTP Manager Secrets on Kyma runtimes. It can do it in two ways: +Runtime Reconciler reconciles BTP Manager Secrets on Kyma runtimes with a job, +which periodically loops over all instances from the KEB database. Each instance has an existing assigned Runtime ID. +The job checks if the Secret on the Kyma runtime matches the credentials from the KEB database. -* By implementation with the usage of Runtime Watcher, which sends events about changes of the Secret from a Kyma runtime to Kyma Environment Broker (KEB) in real time. -* With a job, which periodically loops over all instances from the KEB database; each instance has an existing assigned Runtime ID; the job checks if the Secret on the Kyma runtime matches the credentials from the KEB database. +> [!NOTE] +> If you modify or delete the `sap-btp-manager` Secret, it is modified back to its previous settings or regenerated within up to 24 hours. However, if the Secret is labeled with `kyma-project.io/skip-reconciliation: "true"`, the job skips the reconciliation for this Secret. ## Prerequisites