Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 108 for Reconciled (0.27 sec)

  1. pkg/controller/tainteviction/taint_eviction_test.go

    		}
    	}
    }
    
    // TestEventualConsistency verifies if getPodsAssignedToNode returns incomplete data
    // (e.g. due to watch latency), it will reconcile the remaining pods eventually.
    // This scenario is partially covered by TestUpdatePods, but given this is an important
    // property of TaintManager, it's better to have explicit test for this.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  2. pkg/zdsapi/zds.pb.go

    }
    
    func (x *DelWorkload) GetUid() string {
    	if x != nil {
    		return x.Uid
    	}
    	return ""
    }
    
    // Let ztunnel know that a full snapshot was sent. Ztunnel should reconcile its internal state
    // and remove internal entries that were not sent.
    type SnapshotSent struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. pkg/controller/daemon/update.go

    		if err != nil {
    			return nil, err
    		}
    	}
    	return keepCur, nil
    }
    
    // controlledHistories returns all ControllerRevisions controlled by the given DaemonSet.
    // This also reconciles ControllerRef by adopting/orphaning.
    // Note that returned histories are pointers to objects in the cache.
    // If you want to modify one, you need to deep-copy it first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. pkg/kubelet/nodestatus/setters.go

    	volumesInUseFunc func() []v1.UniqueVolumeName, // typically Kubelet.volumeManager.GetVolumesInUse
    ) Setter {
    	return func(ctx context.Context, node *v1.Node) error {
    		// Make sure to only update node status after reconciler starts syncing up states
    		if syncedFunc() {
    			node.Status.VolumesInUse = volumesInUseFunc()
    		}
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    			}
    		}
    	}
    
    	// Remove all matched service subsets. When we rebuild clusters, we will rebuild the subset clusters as well.
    	// We can reconcile the actual subsets that are needed when we rebuild the clusters.
    	for _, matchedSvc := range services {
    		if subsetClusters[matchedSvc.Hostname.String()] != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"managedBy":               "ManagedBy field indicates the controller that manages a Job. The k8s Job controller reconciles jobs which don't have this field at all or the field value is the reserved string `kubernetes.io/job-controller`, but skips reconciling Jobs with a custom value for this field. The value must be a valid domain-prefixed path (e.g. acme.io/foo) -...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "type": "string"
              },
              "targetVolumeAttributesClassName": {
                "description": "targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled",
                "type": "string"
              }
            },
            "required": [
              "status"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.NFSVolumeSource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry.go

    			for _, spec := range specs {
    				spec.Disabled = m.DisableSpanReporting.GetValue()
    			}
    		}
    		// TODO: metrics overrides do a deep merge, but here we do a shallow merge.
    		// We should consider if we want to reconcile the two.
    		if m.CustomTags != nil {
    			for _, spec := range specs {
    				spec.CustomTags = m.CustomTags
    			}
    		}
    		if m.RandomSamplingPercentage != nil {
    			for _, spec := range specs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/generated.proto

      // This is on by default.
      // +optional
      optional string podReplacementPolicy = 14;
    
      // ManagedBy field indicates the controller that manages a Job. The k8s Job
      // controller reconciles jobs which don't have this field at all or the field
      // value is the reserved string `kubernetes.io/job-controller`, but skips
      // reconciling Jobs with a custom value for this field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  10. pkg/apis/batch/types.go

    	// This is on by default.
    	// +optional
    	PodReplacementPolicy *PodReplacementPolicy
    
    	// ManagedBy field indicates the controller that manages a Job. The k8s Job
    	// controller reconciles jobs which don't have this field at all or the field
    	// value is the reserved string `kubernetes.io/job-controller`, but skips
    	// reconciling Jobs with a custom value for this field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top