Fractal Techware

Alert runbooks /

KubeDeploymentRolloutStuck

Deployment rollout is not progressing. Free rule (MIT): the complete runbook and rule definition are below.

   
Severity warning
Pending (for:) 15m (warning)
Domain Kubernetes workloads
Requires kube-state-metrics v2.x
Rule file rules/kubernetes-workloads.rules.yml (group ftw.kubernetes-workloads.alerts)

Meaning

The Deployment controller set Progressing=False (reason ProgressDeadlineExceeded) because the rollout made no progress within progressDeadlineSeconds.

Impact

The new version is not fully rolled out. Old and new ReplicaSets may be serving side by side.

Diagnosis

Mitigation

Escalation

Route to the team that owns the namespace. Platform on-call only takes over when several namespaces are affected at once (likely a node, network or control-plane problem).

Rule definition

From rules/kubernetes-workloads.rules.yml in the free repository (MIT). Unit tests for it are in tests/.

- alert: KubeDeploymentRolloutStuck
  expr: kube_deployment_status_condition{job="kube-state-metrics", namespace=~".+", condition="Progressing", status="false"} != 0
  for: 15m
  labels:
    severity: warning
  annotations:
    summary: Deployment rollout is not progressing.
    description: Rollout of deployment {{ $labels.namespace }}/{{ $labels.deployment }} has exceeded its progress deadline and has not progressed for 15m.
    runbook_url: runbooks/kubernetes-workloads/KubeDeploymentRolloutStuck.md