Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for disruptedPods (0.22 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1beta1.PodDisruptionBudget.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption.go

    	disruptedPods := pdb.Status.DisruptedPods
    	result := make(map[string]metav1.Time)
    	var recheckTime *time.Time
    
    	if disruptedPods == nil {
    		return result, recheckTime
    	}
    	for _, pod := range pods {
    		if pod.DeletionTimestamp != nil {
    			// Already being deleted.
    			continue
    		}
    		disruptionTime, found := disruptedPods[pod.Name]
    		if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1beta1.PodDisruptionBudget.yaml

      - lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        observedGeneration: 3
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentHealthy: 4
      desiredHealthy: 5
      disruptedPods:
        disruptedPodsKey: null
      disruptionsAllowed: 3
      expectedPods: 6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1/generated.pb.go

    	i--
    	dAtA[i] = 0x18
    	if len(m.DisruptedPods) > 0 {
    		keysForDisruptedPods := make([]string, 0, len(m.DisruptedPods))
    		for k := range m.DisruptedPods {
    			keysForDisruptedPods = append(keysForDisruptedPods, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForDisruptedPods)
    		for iNdEx := len(keysForDisruptedPods) - 1; iNdEx >= 0; iNdEx-- {
    			v := m.DisruptedPods[string(keysForDisruptedPods[iNdEx])]
    			baseI := i
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1.PodDisruptionBudget.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1.PodDisruptionBudget.yaml

      - lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        observedGeneration: 3
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentHealthy: 4
      desiredHealthy: 5
      disruptedPods:
        disruptedPodsKey: null
      disruptionsAllowed: 3
      expectedPods: 6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/policy/v1beta1/generated.pb.go

    	i--
    	dAtA[i] = 0x18
    	if len(m.DisruptedPods) > 0 {
    		keysForDisruptedPods := make([]string, 0, len(m.DisruptedPods))
    		for k := range m.DisruptedPods {
    			keysForDisruptedPods = append(keysForDisruptedPods, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForDisruptedPods)
    		for iNdEx := len(keysForDisruptedPods) - 1; iNdEx >= 0; iNdEx-- {
    			v := m.DisruptedPods[string(keysForDisruptedPods[iNdEx])]
    			baseI := i
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/v1/types.go

    	// If everything goes smooth this map should be empty for the most of the time.
    	// Large number of entries in the map may indicate problems with pod deletions.
    	// +optional
    	DisruptedPods map[string]metav1.Time `json:"disruptedPods,omitempty" protobuf:"bytes,2,rep,name=disruptedPods"`
    
    	// Number of pod disruptions that are currently allowed.
    	DisruptionsAllowed int32 `json:"disruptionsAllowed" protobuf:"varint,3,opt,name=disruptionsAllowed"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/policy/v1/generated.proto

      // status information is valid only if observedGeneration equals to PDB's object generation.
      // +optional
      optional int64 observedGeneration = 1;
    
      // DisruptedPods contains information about pods whose eviction was
      // processed by the API server eviction subresource handler but has not
      // yet been observed by the PodDisruptionBudget controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1beta1/generated.proto

      // status information is valid only if observedGeneration equals to PDB's object generation.
      // +optional
      optional int64 observedGeneration = 1;
    
      // DisruptedPods contains information about pods whose eviction was
      // processed by the API server eviction subresource handler but has not
      // yet been observed by the PodDisruptionBudget controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top