Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 101 for Reconciled (0.19 sec)

  1. 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)
  2. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: networkpolicies.crd.projectcalico.org
    spec:
      group: crd.projectcalico.org
      names:
        kind: NetworkPolicy
        listKind: NetworkPolicyList
        plural: networkpolicies
        singular: networkpolicy
      scope: Namespaced
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. cluster/addons/calico-policy-controller/globalnetworkpolicy-crd.yaml

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: globalnetworkpolicies.crd.projectcalico.org
    spec:
      group: crd.projectcalico.org
      names:
        kind: GlobalNetworkPolicy
        listKind: GlobalNetworkPolicyList
        plural: globalnetworkpolicies
        singular: globalnetworkpolicy
      scope: Cluster
      versions:
      - name: v1
        schema:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 45.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    		dealer: dealer}, nil
    }
    
    // setConfiguration is used to set the configuration for a queueSet.
    // Update handling for when fields are updated is handled here as well -
    // eg: if DesiredNum is increased, setConfiguration reconciles by
    // adding more queues.
    func (qs *queueSet) setConfiguration(ctx context.Context, qCfg fq.QueuingConfig, dealer *shufflesharding.Dealer, dCfg fq.DispatchingConfig) {
    	qs.lockAndSyncTime(ctx)
    	defer qs.lock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager.go

    	"k8s.io/kubernetes/pkg/kubelet/types"
    	schedulerframework "k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    const nodeWithoutTopology = -1
    
    // ActivePodsFunc is a function that returns a list of pods to reconcile.
    type ActivePodsFunc func() []*v1.Pod
    
    // ManagerImpl is the structure in charge of managing Device Plugins.
    type ManagerImpl struct {
    	checkpointdir string
    
    	endpoints map[string]endpointInfo // Key is ResourceName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top