package podgc
import "k8s.io/kubernetes/pkg/controller/podgc"
Package podgc contains a very simple pod "garbage collector" implementation, PodGCController, that runs in the controller manager. If the number of pods in terminated phases (right now either Failed or Succeeded) surpasses a configurable threshold, the controller will delete pods in terminated state until the system reaches the allowed threshold again. The PodGCController prioritizes pods to delete by sorting by creation timestamp and deleting the oldest objects first. The PodGCController will not delete non-terminated pods.
Index ¶
Types ¶
type PodGCController ¶
type PodGCController struct {
// contains filtered or unexported fields
}
func NewPodGC ¶
func NewPodGC(kubeClient clientset.Interface, podInformer coreinformers.PodInformer, terminatedPodThreshold int) *PodGCController
func (*PodGCController) Run ¶
func (gcc *PodGCController) Run(stop <-chan struct{})
Source Files ¶
doc.go gc_controller.go
- Version
- v1.11.0-beta.2
- Published
- Jun 7, 2018
- Platform
- js/wasm
- Imports
- 16 packages
- Last checked
- 46 seconds ago –
Tools for package owners.