What's Changed
- feat: update workerpool controller to v0.0.23 by @rekfuki in #107
- chore: bump workerpool-controller version to v0.0.25 by @rekfuki in #108
Version v0.0.25
of the spacelift-workerpool-controller introduces new configuration fields:
successfulPodsHistoryLimit
- Control how many successful pods to keep
per worker (default: 0)failedPodsHistoryLimit
- Control how many failed pods to keep per worker
(default: 5)successfulPodsHistoryTTL
- Automatically remove successful pods after
specified durationfailedPodsHistoryTTL
- Automatically remove failed pods after specified
duration
Key Features:
- Count-based and time-based cleanup strategies that work together
- Pods are removed when they exceed either the count limit or the time
limit - Centralized cleanup management at the WorkerPool level
- Support for TTL-only mode and delete-all mode
Warning
BREAKING CHANGES
This new version removes support for keepSuccessfulPods
option from spacelift-workerpool-controller. The option has been replaced by successfulPodsHistoryLimit
. If you previously used keepSuccessfulPods: true
, set successfulPodsHistoryLimit
to a positive value instead.
New Contributors
Full Changelog: v0.45.0...v0.46.0