<?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>AI Infrastructure Archives - Linuxcent</title>
	<atom:link href="https://linuxcent.com/tag/ai-infrastructure/feed/" rel="self" type="application/rss+xml" />
	<link>https://linuxcent.com/tag/ai-infrastructure/</link>
	<description>Infrastructure security, from the kernel up.</description>
	<lastBuildDate>Sat, 09 May 2026 18:42:19 +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>AI Infrastructure Archives - Linuxcent</title>
	<link>https://linuxcent.com/tag/ai-infrastructure/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">211632295</site>	<item>
		<title>The Platform Engineering Era: GitOps, AI Workloads, and Leaner Kubernetes (2023–2025)</title>
		<link>https://linuxcent.com/kubernetes-platform-engineering-gitops/</link>
					<comments>https://linuxcent.com/kubernetes-platform-engineering-gitops/#respond</comments>
		
		<dc:creator><![CDATA[Vamshi Krishna Santhapuri]]></dc:creator>
		<pubDate>Wed, 15 Apr 2026 19:31:32 +0000</pubDate>
				<category><![CDATA[Kubernetes]]></category>
		<category><![CDATA[AI Infrastructure]]></category>
		<category><![CDATA[ArgoCD]]></category>
		<category><![CDATA[Cloud Native]]></category>
		<category><![CDATA[DevOps]]></category>
		<category><![CDATA[GitOps]]></category>
		<category><![CDATA[Platform Engineering]]></category>
		<guid isPermaLink="false">https://linuxcent.com/kubernetes-platform-engineering-gitops/</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"> 6</span> <span class="rt-label rt-postfix">minutes</span></span>GitOps became the default deployment model. AI workloads hit production clusters. Cluster API matured. Trace how v1.28–v1.32 made Kubernetes the substrate for platform engineering.</p>
<p>The post <a href="https://linuxcent.com/kubernetes-platform-engineering-gitops/">The Platform Engineering Era: GitOps, AI Workloads, and Leaner Kubernetes (2023–2025)</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"> 6</span> <span class="rt-label rt-postfix">minutes</span></span><style>
pre{position:relative;background:#1e1e1e;color:#d4d4d4;<br />
    padding:16px 16px 16px 20px;border-radius:6px;overflow-x:auto;<br />
    font-family:'JetBrains Mono','Fira Code','Cascadia Code',Consolas,'Courier New',monospace;<br />
    font-size:.88em;line-height:1.6;border-left:4px solid #555}<br />
code{background:#f4f4f4;padding:2px 5px;border-radius:3px;font-size:.9em}<br />
pre code{background:transparent;padding:0;color:inherit}<br />
pre[data-lang="bash"],pre[data-lang="sh"],<br />
pre[data-lang="shell"],pre[data-lang="zsh"]{border-left-color:#4ec9b0}<br />
pre[data-lang="yaml"],pre[data-lang="json"],<br />
pre[data-lang="toml"],pre[data-lang="xml"]{border-left-color:#569cd6}<br />
pre[data-lang="python"],pre[data-lang="go"],pre[data-lang="rust"],<br />
pre[data-lang="java"],pre[data-lang="c"],pre[data-lang="cpp"]{border-left-color:#c586c0}<br />
pre[data-lang="text"],pre[data-lang="output"],<br />
pre[data-lang="console"]{border-left-color:#888}<br />
.lc-copy-btn{position:absolute;top:8px;right:8px;background:#2d2d2d;color:#ccc;<br />
    border:1px solid #444;border-radius:4px;padding:3px 9px;font-size:.75em;<br />
    font-family:system-ui,sans-serif;cursor:pointer;opacity:0;<br />
    transition:opacity .15s,background .15s;line-height:1.6}<br />
pre:hover .lc-copy-btn{opacity:1}<br />
.lc-copy-btn:hover{background:#3a3a3a;color:#fff}<br />
.lc-copy-btn.copied{color:#4ec9b0;border-color:#4ec9b0}<br />
.lc-lang-badge{position:absolute;top:8px;left:20px;font-family:system-ui,sans-serif;<br />
    font-size:.7em;color:#666;text-transform:uppercase;letter-spacing:.04em;<br />
    line-height:1;pointer-events:none;opacity:0;transition:opacity .15s}<br />
pre:hover .lc-lang-badge{opacity:1}<br />
table{border-collapse:collapse;width:100%;margin:16px 0}<br />
th,td{border:1px solid #ddd;padding:10px 14px;text-align:left}<br />
th{background:#f0f0f0;font-weight:600}<br />
tr:nth-child(even){background:#fafafa}<br />
</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>
<hr />
<h2 id="introduction">Introduction</h2>
<p>By 2023, the question had shifted from &#8220;how do we run Kubernetes?&#8221; to &#8220;how do we let other engineers run their workloads on Kubernetes without becoming a bottleneck?&#8221;</p>
<p>This is the platform engineering problem. And it drove the tooling that defined 2023–2025: GitOps as the deployment standard, Cluster API for Kubernetes-on-Kubernetes provisioning, AI/ML workloads forcing new scheduling capabilities, and the Kubernetes project itself shedding more weight to become faster to release and operate.</p>
<hr />
<h2 id="gitops-principle-becomes-practice">GitOps: Principle Becomes Practice</h2>
<p>GitOps as a term was coined by Weaveworks in 2017. By 2023, it was no longer a debate — it was the default deployment model for organizations running Kubernetes at scale.</p>
<p>The principle: the desired state of your cluster lives in Git. A controller watches the repository and reconciles the cluster state to match. Every deployment is a PR merge. The audit trail is the Git history.</p>
<p><strong>Flux v2</strong> (CNCF graduated) and <strong>ArgoCD</strong> (CNCF incubating) became the two dominant implementations:</p>
<pre><code class="" data-line=""># Flux: GitRepository + Kustomization
apiVersion: source.toolkit.fluxcd.io/v1
kind: GitRepository
metadata:
  name: production-config
  namespace: flux-system
spec:
  interval: 1m
  url: https://github.com/org/k8s-config
  ref:
    branch: main
---
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
  name: production-apps
  namespace: flux-system
spec:
  interval: 10m
  path: ./clusters/production
  prune: true          # Remove resources deleted from Git
  sourceRef:
    kind: GitRepository
    name: production-config
  healthChecks:
  - apiVersion: apps/v1
    kind: Deployment
    name: api
    namespace: production
</code></pre>
<p>The <code class="" data-line="">prune: true</code> behavior is critical: resources deleted from Git are deleted from the cluster. This is what makes GitOps a security control — unknown resources that aren&#8217;t in Git get removed. No more accumulation of forgotten test deployments, rogue debug pods, or unauthorized configuration changes that outlive the engineer who made them.</p>
<p><strong>ArgoCD&#8217;s Application model</strong> added a UI, synchronization policies, and multi-cluster management:</p>
<pre><code class="" data-line="">apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: production-api
  namespace: argocd
spec:
  project: production
  source:
    repoURL: https://github.com/org/apps
    targetRevision: HEAD
    path: api/production
  destination:
    server: https://kubernetes.default.svc
    namespace: api
  syncPolicy:
    automated:
      prune: true
      selfHeal: true    # Revert manual kubectl changes
    syncOptions:
    - CreateNamespace=true
</code></pre>
<p>The <code class="" data-line="">selfHeal: true</code> option is where GitOps becomes enforceable: any manual change made with kubectl is automatically reverted within the sync interval. For compliance-sensitive environments, this is a configuration drift prevention control.</p>
<hr />
<h2 id="cluster-api-kubernetes-managing-kubernetes">Cluster API: Kubernetes Managing Kubernetes</h2>
<p><strong>Cluster API</strong> (cluster-sigs/cluster-api) flipped the usual model: instead of using tools like Terraform or Ansible to provision Kubernetes clusters, Cluster API lets you manage Kubernetes clusters as Kubernetes resources — using a management cluster to provision and manage workload clusters.</p>
<pre><code class="" data-line=""># Create a new Kubernetes cluster as a Kubernetes resource
apiVersion: cluster.x-k8s.io/v1beta1
kind: Cluster
metadata:
  name: workload-cluster-prod
spec:
  clusterNetwork:
    pods:
      cidrBlocks: [&quot;192.168.0.0/16&quot;]
  infrastructureRef:
    apiVersion: infrastructure.cluster.x-k8s.io/v1beta2
    kind: AWSCluster
    name: workload-cluster-prod
  controlPlaneRef:
    apiVersion: controlplane.cluster.x-k8s.io/v1beta1
    kind: KubeadmControlPlane
    name: workload-cluster-prod-control-plane
</code></pre>
<p>Cluster API reconciliation handles cluster provisioning, scaling, upgrades, and deletion — all through the Kubernetes API, with all the tooling (RBAC, audit logging, GitOps integration) that entails. Multi-cluster platform teams could now manage hundreds of workload clusters from a single management cluster.</p>
<hr />
<h2 id="kubernetes-128-sidecar-containers-alpha-august-2023">Kubernetes 1.28 — Sidecar Containers Alpha (August 2023)</h2>
<p>Sidecar containers had been a Kubernetes pattern since 2015 — a helper container in the same pod as the main application. But there was no native sidecar lifecycle management. Sidecars were just regular init containers or additional containers, which meant:<br />
&#8211; Init container sidecars ran before the application and had to block until they succeeded<br />
&#8211; Regular container sidecars had no ordering guarantees at startup<br />
&#8211; At pod termination, sidecars could die before the application finished draining</p>
<p>1.28 introduced native sidecar support: <strong>a new restartPolicy field for init containers</strong>:</p>
<pre><code class="" data-line="">spec:
  initContainers:
  - name: log-collector
    image: fluentbit:latest
    restartPolicy: Always    # This makes it a sidecar
    # Starts before main containers, stays running, stops after main containers exit
  containers:
  - name: application
    image: myapp:latest
</code></pre>
<p>A sidecar container (init container with <code class="" data-line="">restartPolicy: Always</code>):<br />
&#8211; Starts before application containers<br />
&#8211; Stays running throughout the pod lifecycle<br />
&#8211; Terminates automatically after all main containers exit<br />
&#8211; Restarts if it crashes (unlike regular init containers)</p>
<p>This solved the service mesh sidecar problem: Istio and Linkerd injected Envoy proxies as regular containers, leading to race conditions where the proxy hadn&#8217;t started when the application tried to make outbound connections. Native sidecar lifecycle guarantees the proxy is ready before the application starts.</p>
<p>Also in 1.28:<br />
&#8211; <strong>Retroactive default StorageClass assignment</strong>: Existing PVCs without a StorageClass assignment get the default applied retroactively — useful for migrations<br />
&#8211; <strong>Non-graceful node shutdown</strong> stable: Handle node power failures without manual pod cleanup<br />
&#8211; <strong>Recovery from volume expansion failure</strong>: Previously, a failed volume expansion left the PVC in a broken state; 1.28 introduced a mechanism to recover</p>
<hr />
<h2 id="aiml-workloads-force-new-kubernetes-capabilities">AI/ML Workloads Force New Kubernetes Capabilities</h2>
<p>The LLM wave of 2023 drove GPU workloads onto Kubernetes at a scale and urgency the project hadn&#8217;t anticipated. Running LLM inference on Kubernetes required solving problems that CPU-centric cluster scheduling hadn&#8217;t encountered:</p>
<p><strong>GPU topology awareness</strong>: Inference across multiple GPUs requires GPUs connected by NVLink or on the same PCIe switch, not arbitrary GPUs from different nodes or different PCIe buses. The Dynamic Resource Allocation API (1.26 alpha) was designed exactly for this.</p>
<p><strong>Fractional GPU allocation</strong>: NVIDIA&#8217;s time-slicing and MIG (Multi-Instance GPU) allow multiple pods to share a single GPU. The GPU operator (NVIDIA) manages this at the node level:</p>
<pre><code class="" data-line=""># Check GPU resources visible to Kubernetes
kubectl get nodes -o custom-columns=\
  &quot;NODE:.metadata.name,GPU:.status.allocatable.nvidia\.com/gpu&quot;
# NODE       GPU
# gpu-node-1   8
# gpu-node-2   8
</code></pre>
<p><strong>Batch scheduling for training jobs</strong>: Training runs require all workers to start simultaneously — a single missing GPU makes the entire job stall. The Kubernetes Job API doesn&#8217;t guarantee this. Projects like <strong>Volcano</strong> (CNCF incubating) and <strong>Kueue</strong> (Kubernetes SIG Scheduling) added gang scheduling: a job only starts when all requested resources are available.</p>
<pre><code class="" data-line=""># Kueue: queue AI training jobs with resource quotas
apiVersion: kueue.x-k8s.io/v1beta1
kind: ClusterQueue
metadata:
  name: gpu-queue
spec:
  namespaceSelector: {}
  resourceGroups:
  - coveredResources: [&quot;nvidia.com/gpu&quot;, &quot;cpu&quot;, &quot;memory&quot;]
    flavors:
    - name: a100-80gb
      resources:
      - name: nvidia.com/gpu
        nominalQuota: 16
</code></pre>
<hr />
<h2 id="kubernetes-129-sidecar-to-beta-load-balancer-ip-mode-december-2023">Kubernetes 1.29 — Sidecar to Beta, Load Balancer IP Mode (December 2023)</h2>
<ul>
<li><strong>Sidecar containers</strong> beta: The lifecycle semantics were refined based on 1.28 alpha feedback</li>
<li><strong>Load balancer IP mode</strong> alpha: Distinguish between load balancers that use virtual IPs (kube-proxy handles the traffic) vs. those that handle traffic directly (no need for kube-proxy rules) — important for eBPF-based load balancers</li>
<li><strong>ReadWriteOncePod volume access</strong> stable</li>
</ul>
<hr />
<h2 id="kubernetes-130-structured-authorization-config-april-2024">Kubernetes 1.30 — Structured Authorization Config (April 2024)</h2>
<ul>
<li><strong>Structured authorization configuration</strong> beta: Define multiple authorization webhooks with explicit ordering, failure modes, and connection settings — replacing the flat <code class="" data-line="">--authorization-mode</code> flag</li>
<li><strong>Sidecar containers</strong> beta continues</li>
<li><strong>Node memory swap support</strong> beta: Allow pods to use swap memory — controversial but necessary for workloads with bursty memory patterns that prefer using swap over OOM kill</li>
</ul>
<pre><code class="" data-line=""># Node with swap enabled — kubelet config
kind: KubeletConfiguration
memorySwap:
  swapBehavior: LimitedSwap
</code></pre>
<p>The swap support feature reversed a long-standing Kubernetes hard stance: swap was disabled since 1.0 because its interaction with Kubernetes memory accounting was unpredictable. The 1.30 approach adds proper accounting and policies.</p>
<hr />
<h2 id="kubernetes-131-cloud-provider-code-removal-complete-august-2024">Kubernetes 1.31 — Cloud Provider Code Removal Complete (August 2024)</h2>
<p>1.31 marked the completion of the cloud provider code removal — the 1.5 million line migration that had been running since 1.26. Core binaries are 40% smaller. The API server, controller manager, and scheduler no longer contain vendor-specific code.</p>
<p>Also in 1.31:<br />
&#8211; <strong>Persistent Volume health monitor</strong> stable<br />
&#8211; <strong>AppArmor support</strong> stable: AppArmor profiles for pods using the native Kubernetes field (not annotations)<br />
&#8211; <strong>Traffic distribution for Services</strong> beta: Express topology preferences for Service routing (prefer local node, prefer same zone)</p>
<pre><code class="" data-line=""># Traffic distribution: prefer endpoints in the same zone
apiVersion: v1
kind: Service
metadata:
  name: api
spec:
  trafficDistribution: PreferClose
  selector:
    app: api
  ports:
  - port: 80
    targetPort: 8080
</code></pre>
<hr />
<h2 id="kubernetes-132-sidecar-stable-dra-beta-december-2024">Kubernetes 1.32 — Sidecar Stable, DRA Beta (December 2024)</h2>
<ul>
<li><strong>Sidecar containers</strong> stable: After nearly a decade of workarounds, the sidecar pattern is a first-class Kubernetes primitive</li>
<li><strong>Dynamic Resource Allocation</strong> beta: GPU and specialized hardware scheduling ready for production evaluation</li>
<li><strong>Job API improvements</strong>: Success and failure policies for indexed jobs — granular control over batch workload behavior</li>
<li><strong>Custom Resource field selectors</strong>: Filter CRDs on arbitrary fields — making large CRD-based systems more efficient to query</li>
</ul>
<hr />
<h2 id="crossplane-kubernetes-as-the-control-plane-for-everything">Crossplane: Kubernetes as the Control Plane for Everything</h2>
<p>Crossplane (CNCF graduated) extended the Kubernetes API model beyond the cluster itself. Using CRDs and controllers, Crossplane lets you manage cloud resources (RDS databases, S3 buckets, VPCs, IAM roles) as Kubernetes resources — provisioned, updated, and deleted through the Kubernetes API.</p>
<pre><code class="" data-line=""># Crossplane: provision an RDS PostgreSQL instance as a Kubernetes resource
apiVersion: database.aws.crossplane.io/v1beta1
kind: RDSInstance
metadata:
  name: production-db
spec:
  forProvider:
    region: us-east-1
    dbInstanceClass: db.r6g.xlarge
    masterUsername: admin
    engine: postgres
    engineVersion: &quot;15&quot;
    allocatedStorage: 100
    multiAZ: true
  writeConnectionSecretsToRef:
    name: production-db-credentials
    namespace: production
</code></pre>
<p>For platform teams, Crossplane means a single control plane — the Kubernetes API — for both compute workloads and cloud infrastructure. GitOps tools (Flux, ArgoCD) manage both.</p>
<hr />
<h2 id="key-takeaways">Key Takeaways</h2>
<ul>
<li>GitOps (Flux, ArgoCD) became the production deployment standard — not for ideological reasons, but because the audit trail, drift detection, and self-healing properties solve real operational and compliance problems</li>
<li>Cluster API made Kubernetes cluster lifecycle (provisioning, upgrades, deletion) a Kubernetes-native operation — the same API, tooling, and audit trail</li>
<li>Native sidecar containers (1.28 alpha → 1.32 stable) finally resolved the lifecycle ordering problem that service meshes and log collectors had worked around for years</li>
<li>AI/ML workloads drove new scheduling capabilities (DRA, gang scheduling via Kueue/Volcano) and made GPU topology awareness a first-class concern</li>
<li>Crossplane generalized the Kubernetes API model to cloud infrastructure — the cluster is now a control plane for everything, not just containers</li>
</ul>
<hr />
<h2 id="whats-next">What&#8217;s Next</h2>
<p><a href="ep06-runtime-reckoning.md">← EP06: The Runtime Reckoning</a> | <a href="ep08-kubernetes-today.md">EP08: Kubernetes Today →</a></p>
<p><em>Series: Kubernetes: From Borg to Platform Engineering | linuxcent.com</em></p>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Fkubernetes-platform-engineering-gitops%2F&amp;linkname=The%20Platform%20Engineering%20Era%3A%20GitOps%2C%20AI%20Workloads%2C%20and%20Leaner%20Kubernetes%20%282023%E2%80%932025%29" 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-platform-engineering-gitops%2F&amp;linkname=The%20Platform%20Engineering%20Era%3A%20GitOps%2C%20AI%20Workloads%2C%20and%20Leaner%20Kubernetes%20%282023%E2%80%932025%29" 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-platform-engineering-gitops%2F&amp;linkname=The%20Platform%20Engineering%20Era%3A%20GitOps%2C%20AI%20Workloads%2C%20and%20Leaner%20Kubernetes%20%282023%E2%80%932025%29" 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-platform-engineering-gitops%2F&amp;linkname=The%20Platform%20Engineering%20Era%3A%20GitOps%2C%20AI%20Workloads%2C%20and%20Leaner%20Kubernetes%20%282023%E2%80%932025%29" 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-platform-engineering-gitops%2F&amp;linkname=The%20Platform%20Engineering%20Era%3A%20GitOps%2C%20AI%20Workloads%2C%20and%20Leaner%20Kubernetes%20%282023%E2%80%932025%29" 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-platform-engineering-gitops%2F&amp;linkname=The%20Platform%20Engineering%20Era%3A%20GitOps%2C%20AI%20Workloads%2C%20and%20Leaner%20Kubernetes%20%282023%E2%80%932025%29" 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-platform-engineering-gitops%2F&amp;linkname=The%20Platform%20Engineering%20Era%3A%20GitOps%2C%20AI%20Workloads%2C%20and%20Leaner%20Kubernetes%20%282023%E2%80%932025%29" 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-platform-engineering-gitops%2F&#038;title=The%20Platform%20Engineering%20Era%3A%20GitOps%2C%20AI%20Workloads%2C%20and%20Leaner%20Kubernetes%20%282023%E2%80%932025%29" data-a2a-url="https://linuxcent.com/kubernetes-platform-engineering-gitops/" data-a2a-title="The Platform Engineering Era: GitOps, AI Workloads, and Leaner Kubernetes (2023–2025)"></a></p><p>The post <a href="https://linuxcent.com/kubernetes-platform-engineering-gitops/">The Platform Engineering Era: GitOps, AI Workloads, and Leaner Kubernetes (2023–2025)</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/kubernetes-platform-engineering-gitops/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1659</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-22 23:24:12 by W3 Total Cache
-->