The Rise of AI Coding Agents: Impact on Platform Engineering Teams
How AI coding agents like GitHub Copilot Workspace and Cursor are reshaping platform engineering. What teams need to prepare for and how to leverage these tools.
\n## 🔒 Computing on Encrypted Data
Confidential containers run workloads in hardware-encrypted enclaves. Even the cloud provider or cluster administrator can’t see the data being processed. For AI workloads handling sensitive data — medical records, financial data, PII — this is a game-changer.
Confidential computing uses CPU hardware features:
The CPU encrypts memory transparently. No code changes needed.
# Install the operator
kubectl apply -f https://github.com/confidential-containers/operator/releases/download/v0.10.0/deploy.yaml
# Create a runtime class
kubectl apply -f - <<EOF
apiVersion: node.k8s.io/v1
kind: RuntimeClass
metadata:
name: kata-cc
handler: kata-cc
overhead:
podFixed:
memory: "256Mi"
cpu: "250m"
scheduling:
nodeSelector:
cc.kata/enabled: "true"
EOFapiVersion: v1
kind: Pod
metadata:
name: confidential-inference
annotations:
io.katacontainers.config.hypervisor.firmware: "OVMF_CODE.cc.fd"
spec:
runtimeClassName: kata-cc
containers:
- name: inference
image: registry.internal/ai-inference:v1.0
resources:
limits:
memory: "4Gi"
cpu: "2"
env:
- name: MODEL_ENCRYPTION_KEY
valueFrom:
secretKeyRef:
name: model-key
key: encryption-keyRemote attestation verifies the hardware is genuine and the software is unmodified:
import requests
def verify_attestation(attestation_report):
# Verify with AMD/Intel attestation service
result = requests.post(
"https://attestation.amd.com/verify",
json={"report": attestation_report}
)
if result.json()["trusted"]:
# Safe to send sensitive data
return send_encrypted_data()
else:
raise SecurityError("Attestation failed")Confidential containers are moving from experimental to production-ready. For regulated industries processing sensitive data, this is no longer optional — it’s becoming expected.
Need confidential computing for your AI workloads? I help organizations deploy secure, privacy-preserving infrastructure. Get in touch.\n
AI & Cloud Advisor with 18+ years experience. Author of 8 technical books, creator of Ansible Pilot, and instructor at CopyPasteLearn Academy. Speaker at KubeCon EU & Red Hat Summit 2026.
How AI coding agents like GitHub Copilot Workspace and Cursor are reshaping platform engineering. What teams need to prepare for and how to leverage these tools.
Backstage is the de facto IDP. Adding AI makes it transformative — auto-generated docs, intelligent search, and self-service infrastructure. Here's the architecture.
Schedule Kubernetes workloads when and where the grid is greenest. How carbon-aware scheduling works, the tools available, and the business case for sustainable compute.