Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for Reconciled (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/volume/util/operationexecutor/operation_executor.go

    	// In theory (but very unlikely in practise), race condition among these operations might mark volume as detached
    	// even if it is attached. But reconciler can correct this in a short period of time.
    	VerifyVolumesAreAttachedPerNode(AttachedVolumes []AttachedVolume, nodeName types.NodeName, actualStateOfWorld ActualStateOfWorldAttacherUpdater) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/types.go

    	// 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 Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top