package disruption
import "k8s.io/kubernetes/pkg/controller/disruption"
Index ¶
- Constants
- type DisruptionController
- func NewDisruptionController( podInformer coreinformers.PodInformer, pdbInformer policyinformers.PodDisruptionBudgetInformer, rcInformer coreinformers.ReplicationControllerInformer, rsInformer appsv1informers.ReplicaSetInformer, dInformer appsv1informers.DeploymentInformer, ssInformer appsv1informers.StatefulSetInformer, kubeClient clientset.Interface, ) *DisruptionController
- func (dc *DisruptionController) Run(stopCh <-chan struct{})
Constants ¶
DeletionTimeout sets maximum time from the moment a pod is added to DisruptedPods in PDB.Status to the time when the pod is expected to be seen by PDB controller as having been marked for deletion. If the pod was not marked for deletion during that time it is assumed that it won't be deleted at all and the corresponding entry can be removed from pdb.Status.DisruptedPods. It is assumed that pod/pdb apiserver to controller latency is relatively small (like 1-2sec) so the below value should be more than enough. If the controller is running on a different node it is important that the two nodes have synced clock (via ntp for example). Otherwise PodDisruptionBudget controller may not provide enough protection against unwanted pod disruptions.
Types ¶
type DisruptionController ¶
type DisruptionController struct {
// contains filtered or unexported fields
}
func NewDisruptionController ¶
func NewDisruptionController( podInformer coreinformers.PodInformer, pdbInformer policyinformers.PodDisruptionBudgetInformer, rcInformer coreinformers.ReplicationControllerInformer, rsInformer appsv1informers.ReplicaSetInformer, dInformer appsv1informers.DeploymentInformer, ssInformer appsv1informers.StatefulSetInformer, kubeClient clientset.Interface, ) *DisruptionController
func (*DisruptionController) Run ¶
func (dc *DisruptionController) Run(stopCh <-chan struct{})
Source Files ¶
disruption.go
- Version
- v1.14.11-beta.1
- Published
- Dec 11, 2019
- Platform
- js/wasm
- Imports
- 29 packages
- Last checked
- 1 minute ago –
Tools for package owners.