# ============================================================================= # PodDisruptionBudget Template — AKS Deploy Skill # ============================================================================= # Ensures at least one pod remains available during voluntary disruptions # (node drains, cluster upgrades, spot evictions). # # REPLACE: — your application name (e.g., order-api) # REPLACE: — target namespace (e.g., production) # ============================================================================= apiVersion: policy/v1 kind: PodDisruptionBudget metadata: name: namespace: labels: app: spec: minAvailable: 1 selector: matchLabels: app: