From 69f397d2edc1bd61c349f87dbce9f6adc61e81df Mon Sep 17 00:00:00 2001 From: killianmuldoon Date: Tue, 12 Mar 2024 11:29:41 +0000 Subject: [PATCH] Fix flaky link in docs Signed-off-by: killianmuldoon --- .../implementers-guide/controllers_and_reconciliation.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/book/src/developer/providers/implementers-guide/controllers_and_reconciliation.md b/docs/book/src/developer/providers/implementers-guide/controllers_and_reconciliation.md index a5029886c79a..836532204490 100644 --- a/docs/book/src/developer/providers/implementers-guide/controllers_and_reconciliation.md +++ b/docs/book/src/developer/providers/implementers-guide/controllers_and_reconciliation.md @@ -175,7 +175,7 @@ if err != nil { But wait, this isn't quite right. `Reconcile()` gets called periodically for updates, and any time any updates are made. That would mean we're potentially sending an email every few minutes! -This is an important thing about controllers: they need to be [*idempotent*][idempotent]. +This is an important thing about controllers: they need to be idempotent. This means a controller must be able to repeat actions on the same inputs without changing the effect of those actions. So in our case, we'll store the result of sending a message, and then check to see if we've sent one before. @@ -209,7 +209,6 @@ return ctrl.Result{}, nil [cluster]: https://godoc.org/sigs.k8s.io/cluster-api/api/v1beta1#Cluster [getowner]: https://godoc.org/sigs.k8s.io/cluster-api/util#GetOwnerMachine -[idempotent]: https://stackoverflow.com/questions/1077412/what-is-an-idempotent-operation #### A note about the status