Beyond moving to the cloud#
For years the conversation was simple: migrate to the cloud. That stage is over.
Infrastructure stopped being a destination and started behaving like a system that adapts, self-corrects and evolves in production. The real trends aren't new tools or fashionable frameworks but shifts in how infrastructure is designed, operated and governed. These are the seven that matter most this year, and what to do about each one.
1. Infrastructure designed for AI from the start#
The clearest difference from previous years is that infrastructure is no longer designed for traditional applications with AI bolted on top. It's designed AI-first.
Demand for generative models and agents is the main driver of change. The International Energy Agency estimates that data centres used around 415 TWh in 2024, about 1.5% of global electricity, and projects that figure to more than double by 2030, with AI as the main driver. That turns power, cooling and resilience into architecture decisions.
Hardware reflects it: rack-scale systems such as NVIDIA's GB200 NVL72 are designed around liquid cooling. On the software side, Kubernetes exposes GPUs as schedulable resources through device plugins and, with Dynamic Resource Allocation, lets you describe and share devices in more detail. AI stops being a special case and becomes the starting point.
Documentation: IEA · Energy and AI, executive summary ↗ · NVIDIA · GB200 NVL72 ↗ · Kubernetes · Schedule GPUs ↗ · Kubernetes · Dynamic Resource Allocation ↗
2. Edge stops being an experiment#
Edge computing is no longer a pilot; it's becoming a structural part of many platforms.
Moving all data to a central region isn't always viable. Industrial applications, IoT, automation and latency-sensitive products need to process data close to the source to cut latency and network traffic. Providers reflect this with offerings like AWS Local Zones, which bring compute and storage closer to metro areas, and projects like KubeEdge extend Kubernetes out to edge nodes.
The real trend is infrastructure that is distributed by design, where edge and cloud coordinate instead of competing.
Documentation: AWS · What is AWS Local Zones? ↗ · KubeEdge · Documentation ↗
3. Hybrid and multi-cloud as the default#
Cloud-first is evolving into hybrid and multi-cloud by default. Companies combine public cloud, private cloud, on-premises and edge for resilience, regulatory compliance and cost; no single provider covers every need.
The advantage isn't using several clouds, it's deciding well where each workload runs and governing that decision deliberately. Google Cloud documents concrete patterns, such as splitting workloads by tier or using the cloud for bursting or disaster recovery, that make a good starting point.
Documentation: Google Cloud · Hybrid and multicloud patterns and practices ↗
4. Infrastructure starts running itself#
Today's environments are too complex to manage by hand, and operations are changing accordingly. AIOps and advanced automation are maturing: capacity adjusts itself, anomalies are caught before they become incidents and remediation is automated with context.
Much of this is already standard: Kubernetes' Horizontal Pod Autoscaler adjusts replicas based on observed metrics. Infrastructure as code, with Terraform or OpenTofu, is the other prerequisite: once infrastructure is codified and versioned, automation, and AI, have the context to make decisions, and every change stays reviewable and reversible.
Documentation: Kubernetes · Horizontal Pod Autoscaling ↗ · HashiCorp · What is Terraform? ↗ · OpenTofu · Documentation ↗
5. Observability that explains instead of overwhelming#
Visibility is no longer measured in dashboards. Modern observability connects technical signals to their impact on the service and the business: it correlates events, cuts noise and supports decisions. OpenTelemetry has become the open standard for collecting traces, metrics and logs without vendor lock-in.
The focus shifts from seeing everything to understanding what matters relative to your SLOs. Google's SRE guidance is to alert on how fast you're consuming the error budget, not on every metric that moves:
groups:
- name: checkout-slo
rules:
# 99.9% availability SLO -> error budget = 0.001.
# A 14.4 burn rate sustained for 1h consumes ~2% of a 30-day budget.
- alert: CheckoutErrorBudgetFastBurn
expr: |
(
sum(rate(http_requests_total{job="checkout",code=~"5.."}[1h]))
/ sum(rate(http_requests_total{job="checkout"}[1h]))
) > (14.4 * 0.001)
and
(
sum(rate(http_requests_total{job="checkout",code=~"5.."}[5m]))
/ sum(rate(http_requests_total{job="checkout"}[5m]))
) > (14.4 * 0.001)
labels:
severity: page
annotations:
summary: "checkout is burning its error budget too fast"Documentation: OpenTelemetry · What is OpenTelemetry? ↗ · Google SRE Book · Service Level Objectives ↗ · Google SRE Workbook · Alerting on SLOs ↗ · Prometheus · Alerting rules ↗
6. Security built in by design#
Security stops being a layer added at the end. In distributed, AI-driven environments the perimeter model falls short, and the trend is convergence of data, identity and network security under zero trust principles.
NIST SP 800-207 defines zero trust as a set of principles where no network is implicitly trusted and every access is authenticated and authorized per session. CISA's maturity model breaks it into pillars: identity, devices, networks, applications and data. Identity as the control plane, least-privilege access, segmentation and SSE/SASE architectures become the baseline, not an add-on.
Documentation: NIST SP 800-207 · Zero Trust Architecture ↗ · CISA · Zero Trust Maturity Model ↗
7. Sustainability as a real technical constraint#
Energy efficiency is no longer just an environmental talking point; it's a technical and financial constraint. Data centre power use keeps growing, driven by AI, which forces more efficient designs from the start.
Liquid cooling, renewables, storage and carbon, water and lifecycle metrics become part of the architecture. The sustainability pillar of the AWS Well-Architected Framework gives concrete practices, such as right-sizing and maximizing utilization, and the Green Software Foundation's Software Carbon Intensity specification offers a way to measure emissions per unit of software work.
Documentation: IEA · Energy and AI, executive summary ↗ · AWS Well-Architected · Sustainability pillar ↗ · Green Software Foundation · Software Carbon Intensity (SCI) ↗
How to prepare your infrastructure#
Building AI-first infrastructure isn't about bigger budgets but earlier architecture decisions. Order matters: observability before automation, power and cooling capacity before scaling GPUs, self-healing policies before multiplying services.
| Trend | Question you should be able to answer | First step |
|---|---|---|
| AI-first | Can your platform schedule and measure GPU workloads? | Inventory AI workloads and their real consumption |
| Edge | Which data needs processing close to the source? | Map latency requirements per use case |
| Hybrid and multi-cloud | Why does each workload run where it runs? | Documented placement criteria |
| Autonomous operations | Is all your infrastructure in code? | Infrastructure as code reviewed through PRs |
| Observability | Are your alerts tied to SLOs? | Define SLOs for critical services |
| Zero trust | Who can access what, and how is it verified? | Centralized identity and least privilege |
| Sustainability | Do you know how much capacity sits idle? | Measure utilization and right-size |
Conclusion#
Infrastructure today isn't about which cloud you use but how well you understand what you're building. Automating without judgment, scaling without observability or adopting AI without a solid foundation isn't modernization; it's accelerating chaos.
Modern infrastructure isn't improvised, isn't copied and isn't held up by tools alone. The advantage isn't being in the cloud; it's knowing how to run it well.
Sources and scope
Documentation checked on September 25, 2026. Examples and decision criteria are editorial proposals; adapt them to your application's contract and validate them in an authorized test environment.
- IEA · Energy and AI, executive summary ↗
- NVIDIA · GB200 NVL72 ↗
- Kubernetes · Schedule GPUs ↗
- Kubernetes · Dynamic Resource Allocation ↗
- AWS · What is AWS Local Zones? ↗
- KubeEdge · Documentation ↗
- Google Cloud · Hybrid and multicloud patterns and practices ↗
- Kubernetes · Horizontal Pod Autoscaling ↗
- HashiCorp · What is Terraform? ↗
- OpenTofu · Documentation ↗
- OpenTelemetry · What is OpenTelemetry? ↗
- Google SRE Book · Service Level Objectives ↗
- Google SRE Workbook · Alerting on SLOs ↗
- Prometheus · Alerting rules ↗
- NIST SP 800-207 · Zero Trust Architecture ↗
- CISA · Zero Trust Maturity Model ↗
- AWS Well-Architected · Sustainability pillar ↗
- Green Software Foundation · Software Carbon Intensity (SCI) ↗
Compare cloud options
Review pricing, limits, conditions and sources for each option (in Spanish).
Open comparison