<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Controller Archives - Linuxcent</title>
	<atom:link href="https://linuxcent.com/tag/controller/feed/" rel="self" type="application/rss+xml" />
	<link>https://linuxcent.com/tag/controller/</link>
	<description>Infrastructure security, from the kernel up.</description>
	<lastBuildDate>Sat, 09 May 2026 18:40:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.4</generator>

<image>
	<url>https://linuxcent.com/wp-content/uploads/2026/04/favicon-512x512-1-150x150.png</url>
	<title>Controller Archives - Linuxcent</title>
	<link>https://linuxcent.com/tag/controller/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">211632295</site>	<item>
		<title>The Kubernetes Controller Reconcile Loop: How CRDs Come Alive at Runtime</title>
		<link>https://linuxcent.com/kubernetes-controller-reconcile-loop/</link>
					<comments>https://linuxcent.com/kubernetes-controller-reconcile-loop/#respond</comments>
		
		<dc:creator><![CDATA[Vamshi Krishna Santhapuri]]></dc:creator>
		<pubDate>Sat, 25 Apr 2026 18:16:12 +0000</pubDate>
				<category><![CDATA[Kubernetes]]></category>
		<category><![CDATA[Controller]]></category>
		<category><![CDATA[controller-runtime]]></category>
		<category><![CDATA[CRD]]></category>
		<category><![CDATA[Informer]]></category>
		<category><![CDATA[Operator Pattern]]></category>
		<category><![CDATA[Reconcile Loop]]></category>
		<guid isPermaLink="false">https://linuxcent.com/kubernetes-controller-reconcile-loop/</guid>

					<description><![CDATA[<p><span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> 7</span> <span class="rt-label rt-postfix">minutes</span></span>Understand the Kubernetes controller reconcile loop — how a controller watches CRDs, detects drift, and reconciles desired vs actual state. The theory behind every operator.</p>
<p>The post <a href="https://linuxcent.com/kubernetes-controller-reconcile-loop/">The Kubernetes Controller Reconcile Loop: How CRDs Come Alive at Runtime</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></description>
										<content:encoded><![CDATA[<span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> 7</span> <span class="rt-label rt-postfix">minutes</span></span><style>
pre{position:relative;background:#1e1e1e;color:#d4d4d4;
    padding:16px 16px 16px 20px;border-radius:6px;overflow-x:auto;
    font-family:'JetBrains Mono','Fira Code','Cascadia Code',Consolas,'Courier New',monospace;
    font-size:.88em;line-height:1.6;border-left:4px solid #555}
code{background:#f4f4f4;padding:2px 5px;border-radius:3px;font-size:.9em}
pre code{background:transparent;padding:0;color:inherit}
pre[data-lang="bash"],pre[data-lang="sh"],
pre[data-lang="shell"],pre[data-lang="zsh"]{border-left-color:#4ec9b0}
pre[data-lang="yaml"],pre[data-lang="json"],
pre[data-lang="toml"],pre[data-lang="xml"]{border-left-color:#569cd6}
pre[data-lang="python"],pre[data-lang="go"],pre[data-lang="rust"],
pre[data-lang="java"],pre[data-lang="c"],pre[data-lang="cpp"]{border-left-color:#c586c0}
pre[data-lang="text"],pre[data-lang="output"],
pre[data-lang="console"]{border-left-color:#888}
.lc-copy-btn{position:absolute;top:8px;right:8px;background:#2d2d2d;color:#ccc;
    border:1px solid #444;border-radius:4px;padding:3px 9px;font-size:.75em;
    font-family:system-ui,sans-serif;cursor:pointer;opacity:0;
    transition:opacity .15s,background .15s;line-height:1.6}
pre:hover .lc-copy-btn{opacity:1}
.lc-copy-btn:hover{background:#3a3a3a;color:#fff}
.lc-copy-btn.copied{color:#4ec9b0;border-color:#4ec9b0}
.lc-lang-badge{position:absolute;top:8px;left:20px;font-family:system-ui,sans-serif;
    font-size:.7em;color:#666;text-transform:uppercase;letter-spacing:.04em;
    line-height:1;pointer-events:none;opacity:0;transition:opacity .15s}
pre:hover .lc-lang-badge{opacity:1}
table{border-collapse:collapse;width:100%;margin:16px 0}
th,td{border:1px solid #ddd;padding:10px 14px;text-align:left}
th{background:#f0f0f0;font-weight:600}
tr:nth-child(even){background:#fafafa}
</style>
<p><script>
(function(){
  if(window.__lcCodeEnhanced)return;
  window.__lcCodeEnhanced=true;
  function enhance(){
    document.querySelectorAll('pre').forEach(function(pre){
      var code=pre.querySelector('code');
      var lang='';
      if(code){var m=(code.className||'').match(/language-(\S+)/);if(m)lang=m[1].toLowerCase();}
      if(lang)pre.setAttribute('data-lang',lang);
      if(lang){var badge=document.createElement('span');badge.className='lc-lang-badge';badge.textContent=lang;pre.insertBefore(badge,pre.firstChild);}
      var btn=document.createElement('button');
      btn.className='lc-copy-btn';btn.textContent='Copy';btn.setAttribute('aria-label','Copy code to clipboard');
      pre.appendChild(btn);
      btn.addEventListener('click',function(){
        var text=code?code.innerText:pre.innerText;
        if(navigator.clipboard&&window.isSecureContext){
          navigator.clipboard.writeText(text).then(function(){ok(btn);}).catch(function(){fb(text,btn);});
        }else{fb(text,btn);}
      });
    });
  }
  function ok(btn){btn.textContent='Copied!';btn.classList.add('copied');setTimeout(function(){btn.textContent='Copy';btn.classList.remove('copied');},2000);}
  function fb(text,btn){
    try{var ta=document.createElement('textarea');ta.value=text;ta.style.cssText='position:fixed;left:-9999px;top:-9999px;opacity:0';document.body.appendChild(ta);ta.select();document.execCommand('copy');document.body.removeChild(ta);ok(btn);}
    catch(e){btn.textContent='✗ Failed';setTimeout(function(){btn.textContent='Copy';},2000);}
  }
  if(document.readyState==='loading'){document.addEventListener('DOMContentLoaded',enhance);}else{enhance();}
})();
</script></p>
<p><em>Kubernetes CRDs &amp; Operators: Extending the API, Episode 6</em><br />
<em><a href="/what-is-kubernetes-crd/">What Is a CRD?</a> · <a href="/kubernetes-custom-resources-examples/">CRDs You Already Use</a> · <a href="/kubernetes-crd-schema-explained/">CRD Anatomy</a> · <a href="/write-kubernetes-crd-yaml-walkthrough/">Write Your First CRD</a> · <a href="/kubernetes-crd-cel-validation/">CEL Validation</a> · </em><em><a href="/kubernetes-controller-reconcile-loop/">Controller Loop</a></em><em> · <a href="/build-kubernetes-operator-controller-runtime/">Build an Operator</a> · <a href="/kubernetes-crd-versioning-conversion-webhook/">CRD Versioning</a> · <a href="/kubernetes-admission-webhooks-explained/">Admission Webhooks</a> · <a href="/kubernetes-crd-production-finalizers-conditions-rbac/">CRDs in Production</a></em></p>
<hr />
<h2 id="tldr">TL;DR</h2>
<ul>
<li>The Kubernetes controller reconcile loop is the mechanism that makes CRDs do something — it watches custom resources, compares desired state (spec) to actual state, and takes actions to close the gap<br />
  <em>(reconcile = &#8220;make actual match desired&#8221;; the loop runs repeatedly because the world is not static — things drift, fail, and change)</em></li>
<li>Controllers do not receive events like webhooks — they receive object names from a work queue, then re-read the full object from the API server cache</li>
<li>The reconcile function is <strong>idempotent</strong>: calling it ten times with the same object must produce the same result as calling it once</li>
<li><code class="" data-line="">controller-runtime</code> is the Go library that provides the informer cache, work queue, and reconciler interface — kubebuilder scaffolds controllers on top of it</li>
<li>Kubernetes uses the same reconcile loop internally — the Deployment controller, ReplicaSet controller, and node lifecycle controller all follow this exact pattern</li>
<li>A failed reconcile returns an error or explicit requeue request; the controller retries with exponential backoff, not an infinite tight loop</li>
</ul>
<hr />
<h2 id="the-big-picture">The Big Picture</h2>
<pre><code class="" data-line="">  THE KUBERNETES CONTROLLER RECONCILE LOOP

  etcd
   │ change event
   ▼
  Informer cache
  (API server-side list+watch,
   local in-memory replica)
   │ cache update → enqueue object name
   ▼
  Work queue
  (rate-limited, deduplicating)
   │ dequeue: &quot;demo/nightly&quot;
   ▼
  Reconcile(ctx, Request{Name, Namespace})
   │
   ├── 1. Fetch object from cache
   │        if not found → ignore (already deleted)
   │
   ├── 2. Read spec (desired state)
   │
   ├── 3. Read actual state
   │        (check child resources, external systems)
   │
   ├── 4. Compare: actual vs desired
   │
   ├── 5. Act: create/update/delete child resources
   │        OR update external system
   │
   └── 6. Update status with outcome
           └── return Result{}, nil      → done
               return Result{Requeue}, nil → retry after delay
               return Result{}, err     → immediate retry + backoff
</code></pre>
<p>The Kubernetes controller reconcile loop is what separates a CRD (validated storage) from an operator (automated behavior). Understanding this loop is the prerequisite for writing controllers that work correctly under failure, partial completion, and concurrent modification.</p>
<hr />
<h2 id="what-reconcile-actually-means">What &#8220;Reconcile&#8221; Actually Means</h2>
<p>Reconcile means: look at what the user asked for (<code class="" data-line="">spec</code>), look at what actually exists, and do whatever is needed to make actual match desired.</p>
<p>The key insight is that this is <strong>not event-driven in the traditional sense</strong>. A controller does not receive a &#8220;diff&#8221; — it receives a name. It reads the full current state of the object and acts accordingly.</p>
<p>This matters because:</p>
<ol>
<li><strong>Multiple events get deduplicated.</strong> If a BackupPolicy is updated five times in one second, the work queue delivers one reconcile call, not five.</li>
<li><strong>The reconcile is stateless.</strong> The controller should not maintain in-memory state about what it &#8220;did last time.&#8221; It re-reads everything on each reconcile.</li>
<li><strong>Partial failure is safe.</strong> If the reconcile fails halfway through, the next reconcile re-reads actual state and continues from where it left off.</li>
</ol>
<hr />
<h2 id="the-informer-cache">The Informer Cache</h2>
<p>Controllers do not call the API server directly for every read. They use an <strong>informer</strong> — a list-and-watch mechanism that maintains a local in-memory copy of all objects of a given type.</p>
<pre><code class="" data-line="">  HOW THE INFORMER CACHE WORKS

  Controller startup:
  ┌─────────────────────────────────────────────────────┐
  │ 1. List all BackupPolicies from API server          │
  │    → populate local cache                           │
  │ 2. Establish a Watch stream                         │
  │    → receive incremental updates                    │
  │ 3. For each update: update cache + enqueue object   │
  └─────────────────────────────────────────────────────┘

  On reconcile:
  ┌─────────────────────────────────────────────────────┐
  │ controller reads from LOCAL cache (not API server)  │
  │ → fast, no network round-trip per reconcile         │
  │ → cache is eventually consistent                    │
  └─────────────────────────────────────────────────────┘
</code></pre>
<blockquote>
<p><strong>Cache consistency:</strong> After writing a change (creating a child Secret, for example), re-reading from the cache may return the old state for a brief period. This is normal and expected. Well-written controllers handle this by returning a requeue rather than assuming the write is immediately visible.</p>
</blockquote>
<hr />
<h2 id="walking-through-a-reconcile-for-backuppolicy">Walking Through a Reconcile for BackupPolicy</h2>
<p>Suppose a user creates this BackupPolicy:</p>
<pre><code class="" data-line="">apiVersion: storage.example.com/v1alpha1
kind: BackupPolicy
metadata:
  name: nightly
  namespace: demo
spec:
  schedule: &quot;0 2 * * *&quot;
  retentionDays: 30
  targets:
    - namespace: production
</code></pre>
<p>The controller&#8217;s reconcile function runs. Here is what it does conceptually:</p>
<pre><code class="" data-line="">Reconcile(ctx, {Namespace: &quot;demo&quot;, Name: &quot;nightly&quot;})

Step 1: Fetch BackupPolicy &quot;demo/nightly&quot; from cache
  → found; spec.schedule = &quot;0 2 * * *&quot;, spec.retentionDays = 30

Step 2: Check if a CronJob for this BackupPolicy exists
  → kubectl get cronjob nightly-backup -n demo
  → not found

Step 3: Gap detected: CronJob should exist but doesn&#039;t
  → Create CronJob &quot;nightly-backup&quot; in namespace &quot;demo&quot;
    spec.schedule = &quot;0 2 * * *&quot;
    spec.jobTemplate.spec.template.spec.containers[0].args = [&quot;--retention=30&quot;]

Step 4: Set owner reference on CronJob pointing to BackupPolicy
  → CronJob is now garbage-collected if BackupPolicy is deleted

Step 5: Update BackupPolicy status
  → conditions: [{type: Ready, status: True, reason: CronJobCreated}]
  → lastScheduleTime: null (not yet run)

Step 6: Return Result{}, nil   → reconcile complete
</code></pre>
<p>Next time the BackupPolicy is modified (e.g., <code class="" data-line="">suspended: true</code>):</p>
<pre><code class="" data-line="">Reconcile(ctx, {Namespace: &quot;demo&quot;, Name: &quot;nightly&quot;})

Step 1: Fetch → spec.suspended = true

Step 2: Fetch CronJob &quot;nightly-backup&quot;
  → found; spec.suspend = false  ← actual state

Step 3: Gap: CronJob.spec.suspend should be true but is false
  → Patch CronJob: set spec.suspend = true

Step 4: Update status
  → conditions: [{type: Ready, status: True, reason: Suspended}]

Step 5: Return Result{}, nil
</code></pre>
<hr />
<h2 id="idempotency-the-essential-property">Idempotency: The Essential Property</h2>
<p>The reconcile function must be idempotent. If it runs ten times with the same object state, the result must be the same as if it ran once.</p>
<p>Why? Because the controller framework delivers at-least-once semantics — your reconcile function will be called more than once for the same object state, especially at startup (the informer re-lists all objects) and after controller restarts.</p>
<p><strong>Non-idempotent (wrong):</strong></p>
<pre><code class="" data-line="">// Creates a new CronJob every time, even if one already exists
err := r.Create(ctx, cronJob)
</code></pre>
<p><strong>Idempotent (correct):</strong></p>
<pre><code class="" data-line="">// Only creates if it doesn&#039;t exist; updates if it does
existing := &amp;batchv1.CronJob{}
err := r.Get(ctx, types.NamespacedName{Name: jobName, Namespace: ns}, existing)
if apierrors.IsNotFound(err) {
    err = r.Create(ctx, cronJob)
} else if err == nil {
    // update if spec differs
    existing.Spec = cronJob.Spec
    err = r.Update(ctx, existing)
}
</code></pre>
<p>The get-before-create pattern is the most basic idempotency mechanism. <code class="" data-line="">controller-runtime</code> provides <code class="" data-line="">CreateOrUpdate</code> helpers that codify this.</p>
<hr />
<h2 id="requeue-and-retry-semantics">Requeue and Retry Semantics</h2>
<p>The reconcile function returns a <code class="" data-line="">(Result, error)</code> pair:</p>
<pre><code class="" data-line="">return Result{}, nil
  → Reconcile succeeded. Re-run only if object changes again.

return Result{RequeueAfter: 5 * time.Minute}, nil
  → Reconcile succeeded, but requeue in 5 minutes regardless.
  → Used for: polling external system, TTL-based refresh.

return Result{Requeue: true}, nil
  → Requeue immediately (with rate limiting).
  → Used for: cache not yet consistent after a write.

return Result{}, err
  → Reconcile failed. Retry with exponential backoff.
  → Used for: API errors, transient failures.
</code></pre>
<pre><code class="" data-line="">  RETRY BEHAVIOR

  First failure  → retry after ~1s
  Second failure → retry after ~2s
  Third failure  → retry after ~4s
  ...
  Max backoff    → ~16min (controller-runtime default)

  Object changes (new version from informer) → reset backoff, reconcile immediately
</code></pre>
<p>Do not return <code class="" data-line="">Result{Requeue: true}, nil</code> in a tight loop — this saturates the work queue and starves other objects. If you need to poll, use <code class="" data-line="">RequeueAfter</code> with a meaningful interval.</p>
<hr />
<h2 id="watches-what-triggers-a-reconcile">Watches: What Triggers a Reconcile</h2>
<p>The controller does not only watch the primary resource (BackupPolicy). It also watches child resources and maps child changes back to the parent:</p>
<pre><code class="" data-line="">  WATCH CONFIGURATION (conceptual)

  Controller watches:
    BackupPolicy (primary) → reconcile when BackupPolicy changes
    CronJob (child/owned)  → reconcile BackupPolicy owner when CronJob changes
    ConfigMap (watched)    → reconcile BackupPolicy when referenced ConfigMap changes
</code></pre>
<p>If a user accidentally deletes the CronJob that the controller created:</p>
<ol>
<li>CronJob deletion event arrives in the informer</li>
<li>Controller maps the deleted CronJob → its owner BackupPolicy</li>
<li>BackupPolicy is enqueued</li>
<li>Reconcile runs, detects missing CronJob, recreates it</li>
</ol>
<p>This &#8220;self-healing&#8221; behavior — where controllers reconcile the world back to desired state — is the core operational value of operators. It is not magic; it is the result of watching child resources and re-running reconcile when they drift.</p>
<hr />
<h2 id="level-triggered-vs-edge-triggered">Level-Triggered vs Edge-Triggered</h2>
<p>Kubernetes controllers are <strong>level-triggered</strong>, not edge-triggered. This distinction matters:</p>
<pre><code class="" data-line="">  EDGE-TRIGGERED (not what Kubernetes uses)
  → &quot;BackupPolicy was updated FROM retained-30 TO retained-7&quot;
  → If event is lost, the update is lost forever

  LEVEL-TRIGGERED (what Kubernetes uses)
  → &quot;BackupPolicy exists with retentionDays=7&quot;
  → On every reconcile, the controller reads the current level (state)
  → Missing an event is safe — the next reconcile corrects the state
</code></pre>
<p>Level-triggered design is why controllers survive restarts, network partitions, and lost events gracefully. The reconcile does not need to track &#8220;what changed&#8221; — it only needs to know &#8220;what is the desired state right now.&#8221;</p>
<hr />
<h2 id="the-same-pattern-in-kubernetes-core">The Same Pattern in Kubernetes Core</h2>
<p>Every built-in Kubernetes controller follows this loop:</p>
<table>
<thead>
<tr>
<th>Controller</th>
<th>Watches</th>
<th>Manages</th>
<th>Reconciles</th>
</tr>
</thead>
<tbody>
<tr>
<td>Deployment controller</td>
<td>Deployment</td>
<td>ReplicaSets</td>
<td>desired replicas <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2194.png" alt="↔" class="wp-smiley" style="height: 1em; max-height: 1em;" /> actual ReplicaSet count</td>
</tr>
<tr>
<td>ReplicaSet controller</td>
<td>ReplicaSet</td>
<td>Pods</td>
<td>desired replicas <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2194.png" alt="↔" class="wp-smiley" style="height: 1em; max-height: 1em;" /> running Pod count</td>
</tr>
<tr>
<td>Node lifecycle controller</td>
<td>Node</td>
<td>Node conditions</td>
<td>NotReady nodes → taint, evict pods</td>
</tr>
<tr>
<td>Service controller (cloud)</td>
<td>Service</td>
<td>LoadBalancer</td>
<td>cloud LB exists <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2194.png" alt="↔" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Service spec</td>
</tr>
</tbody>
</table>
<p>The <code class="" data-line="">BackupPolicy</code> controller you will build in <a href="/build-kubernetes-operator-controller-runtime/">EP07</a> follows exactly the same structure as the Deployment controller.</p>
<hr />
<h2 id="common-mistakes"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a0.png" alt="⚠" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Common Mistakes</h2>
<p><strong>Reading from the API server directly instead of the cache.</strong> Every reconcile reading directly from the API server (not the informer cache) creates N×M load on the API server as the number of objects and reconcile frequency grows. Always read via the controller&#8217;s cached client.</p>
<p><strong>Not handling &#8220;not found&#8221; on object fetch.</strong> If a reconcile is triggered but the object has been deleted by the time reconcile runs, the cache returns &#8220;not found.&#8221; This is normal — the correct response is to return <code class="" data-line="">Result{}, nil</code>, not an error.</p>
<p><strong>Tight requeue loop on recoverable error.</strong> Returning <code class="" data-line="">Result{Requeue: true}, nil</code> or <code class="" data-line="">Result{}, err</code> on every call creates an infinite busy-loop. Use <code class="" data-line="">RequeueAfter</code> for expected wait conditions, and only return errors for unexpected failures that should back off.</p>
<p><strong>Mutable reconcile state.</strong> Do not store reconcile state in struct fields on the reconciler. The reconciler is shared across goroutines; mutable fields cause race conditions. Everything transient must be local to the reconcile function.</p>
<hr />
<h2 id="quick-reference">Quick Reference</h2>
<pre><code class="" data-line="">Reconcile input:
  ctx context.Context
  req ctrl.Request   → {Namespace: &quot;demo&quot;, Name: &quot;nightly&quot;}

Reconcile output:
  (ctrl.Result, error)

Common returns:
  Result{}, nil                        → done, wait for next change
  Result{Requeue: true}, nil           → retry now (rate limited)
  Result{RequeueAfter: 5*time.Minute}  → retry in 5 minutes
  Result{}, err                        → retry with backoff

Key operations:
  r.Get(ctx, req.NamespacedName, &amp;obj)     → fetch from cache
  r.Create(ctx, &amp;obj)                      → create in API server
  r.Update(ctx, &amp;obj)                      → full update
  r.Patch(ctx, &amp;obj, patch)                → partial update
  r.Delete(ctx, &amp;obj)                      → delete
  r.Status().Update(ctx, &amp;obj)             → update status only
</code></pre>
<hr />
<h2 id="key-takeaways">Key Takeaways</h2>
<ul>
<li>The reconcile loop reads desired state from <code class="" data-line="">spec</code>, reads actual state from the cluster, and closes the gap — on every trigger, not just on changes</li>
<li>Controllers use an informer cache for reads — fast, eventually consistent, does not hammer the API server</li>
<li>Idempotency is not optional: the reconcile function will be called multiple times with the same state</li>
<li>Level-triggered design means missing events is safe — the next reconcile corrects any drift</li>
<li>Return values from reconcile control retry behavior: <code class="" data-line="">RequeueAfter</code> for polling, <code class="" data-line="">err</code> for failures, <code class="" data-line="">nil</code> for success</li>
</ul>
<hr />
<h2 id="whats-next">What&#8217;s Next</h2>
<p><a href="/build-kubernetes-operator-controller-runtime/">EP07: Build a Simple Kubernetes Operator with controller-runtime</a> puts the reconcile loop into practice — kubebuilder scaffold, a complete reconciler for <code class="" data-line="">BackupPolicy</code>, RBAC markers, and running the operator locally against a real cluster.</p>
<p>Get EP07 in your inbox when it publishes → <a href="https://linuxcent.com">subscribe at linuxcent.com</a></p>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Fkubernetes-controller-reconcile-loop%2F&amp;linkname=The%20Kubernetes%20Controller%20Reconcile%20Loop%3A%20How%20CRDs%20Come%20Alive%20at%20Runtime" title="Mastodon" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Flinuxcent.com%2Fkubernetes-controller-reconcile-loop%2F&amp;linkname=The%20Kubernetes%20Controller%20Reconcile%20Loop%3A%20How%20CRDs%20Come%20Alive%20at%20Runtime" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Flinuxcent.com%2Fkubernetes-controller-reconcile-loop%2F&amp;linkname=The%20Kubernetes%20Controller%20Reconcile%20Loop%3A%20How%20CRDs%20Come%20Alive%20at%20Runtime" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Flinuxcent.com%2Fkubernetes-controller-reconcile-loop%2F&amp;linkname=The%20Kubernetes%20Controller%20Reconcile%20Loop%3A%20How%20CRDs%20Come%20Alive%20at%20Runtime" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Flinuxcent.com%2Fkubernetes-controller-reconcile-loop%2F&amp;linkname=The%20Kubernetes%20Controller%20Reconcile%20Loop%3A%20How%20CRDs%20Come%20Alive%20at%20Runtime" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Flinuxcent.com%2Fkubernetes-controller-reconcile-loop%2F&amp;linkname=The%20Kubernetes%20Controller%20Reconcile%20Loop%3A%20How%20CRDs%20Come%20Alive%20at%20Runtime" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Flinuxcent.com%2Fkubernetes-controller-reconcile-loop%2F&amp;linkname=The%20Kubernetes%20Controller%20Reconcile%20Loop%3A%20How%20CRDs%20Come%20Alive%20at%20Runtime" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Flinuxcent.com%2Fkubernetes-controller-reconcile-loop%2F&#038;title=The%20Kubernetes%20Controller%20Reconcile%20Loop%3A%20How%20CRDs%20Come%20Alive%20at%20Runtime" data-a2a-url="https://linuxcent.com/kubernetes-controller-reconcile-loop/" data-a2a-title="The Kubernetes Controller Reconcile Loop: How CRDs Come Alive at Runtime"></a></p><p>The post <a href="https://linuxcent.com/kubernetes-controller-reconcile-loop/">The Kubernetes Controller Reconcile Loop: How CRDs Come Alive at Runtime</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/kubernetes-controller-reconcile-loop/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1690</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 

Served from: linuxcent.com @ 2026-08-30 08:50:39 by W3 Total Cache
-->