Expand description
Retry logic with exponential backoff for Kubernetes API calls.
This module provides utilities for retrying transient API errors (429, 5xx) with exponential backoff, while failing fast on permanent errors (4xx client errors).
Structs§
- Exponential
Backoff - Simple exponential backoff implementation.
Functions§
- default_
backoff - Create default exponential backoff configuration for Kubernetes API retries.
- http_
backoff - Create exponential backoff configuration for HTTP API retries.
- is_
retryable_ http_ status - Determine if an HTTP status code is retryable.
- retry_
api_ call - Retry a Kubernetes API call with exponential backoff.