Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for Reconciled (0.15 sec)

  1. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	// based on the current actual state of the world. This function is currently used by
    	// reconciler to verify whether the volume is still attached to the node.
    	GetAttachedVolumesPerNode() map[types.NodeName][]operationexecutor.AttachedVolume
    
    	// GetNodesForAttachedVolume returns the nodes on which the volume is attached.
    	// This function is used by reconciler for multi-attach check.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. pkg/controller/resourcequota/resource_quota_monitor.go

    	// TODO: if we can share storage with garbage collector, it may make sense to support other resources
    	// until that time, aggregated api servers will have to run their own controller to reconcile their own quota.
    	return nil, fmt.Errorf("unable to monitor quota for resource %q", resource.String())
    }
    
    // SyncMonitors rebuilds the monitor set according to the supplied resources,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. pilot/pkg/features/pilot.go

    		"Name of the default GatewayClass").Get()
    
    	ManagedGatewayController = env.Register("PILOT_GATEWAY_API_CONTROLLER_NAME", "istio.io/gateway-controller",
    		"Gateway API controller name. istiod will only reconcile Gateway API resources referencing a GatewayClass with this controller name").Get()
    )
    
    // UnsafeFeaturesEnabled returns true if any unsafe features are enabled.
    func UnsafeFeaturesEnabled() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/context.go

    }
    
    type GatewayController interface {
    	ConfigStoreController
    	// Reconcile updates the internal state of the gateway controller for a given input. This should be
    	// called before any List/Get calls if the state has changed
    	Reconcile(ctx *PushContext) error
    	// SecretAllowed determines if a SDS credential is accessible to a given namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    		if c.NotAfter.After(fiveMinutesAgo) {
    			validCerts = append(validCerts, c)
    		}
    	}
    
    	return validCerts
    }
    
    // Enqueue a method to allow separate control loops to cause the controller to trigger and reconcile content.
    func (c *Controller) Enqueue() {
    	c.queue.Add(keyFn())
    }
    
    // Run the controller until stopped.
    func (c *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	asw.Lock()
    	defer asw.Unlock()
    
    	volumeObj, volumeExists := asw.attachedVolumes[volumeName]
    	if !volumeExists {
    		return
    	}
    	if volumeObj.deviceMountState != operationexecutor.DeviceMountUncertain {
    		// Reconciler must have updated volume state, i.e. when a pod uses the volume and
    		// succeeded mounting the volume. Such update has fixed the device path.
    		return
    	}
    
    	volumeObj.devicePath = devicePath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/range_allocator.go

    			// we don't see the Update with DeletionTimestamp != 0.
    			// TODO: instead of executing the operation directly in the handler, build a small cache with key node.Name
    			// and value PodCIDRs use ReleaseCIDR on the reconcile loop so we can retry on `ReleaseCIDR` failures.
    			if err := ra.ReleaseCIDR(logger, obj.(*v1.Node)); err != nil {
    				utilruntime.HandleError(fmt.Errorf("error while processing CIDR Release: %w", err))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set.go

    	logger.V(4).Info("Pod deleted.", "pod", klog.KObj(pod), "caller", utilruntime.GetCaller())
    	ssc.enqueueStatefulSet(set)
    }
    
    // getPodsForStatefulSet returns the Pods that a given StatefulSet should manage.
    // It also reconciles ControllerRef by adopting/orphaning.
    //
    // NOTE: Returned Pods are pointers to objects from the cache.
    // If you need to modify one, you need to copy it first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. pkg/controller/deployment/deployment_controller.go

    	utilruntime.HandleError(err)
    	logger.V(2).Info("Dropping deployment out of the queue", "deployment", klog.KRef(ns, name), "err", err)
    	dc.queue.Forget(key)
    }
    
    // getReplicaSetsForDeployment uses ControllerRefManager to reconcile
    // ControllerRef by adopting and orphaning.
    // It returns the list of ReplicaSets that this Deployment should manage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. 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)
Back to top