Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 108 for Reconciled (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. hack/local-up-cluster.sh

          fi
    
          # cpumanager policy
          if [[ -n ${CPUMANAGER_POLICY} ]]; then
            echo "cpuManagerPolicy: \"${CPUMANAGER_POLICY}\""
          fi
    
          # cpumanager reconcile period
          if [[ -n ${CPUMANAGER_RECONCILE_PERIOD} ]]; then
    	echo "cpuManagerReconcilePeriod: \"${CPUMANAGER_RECONCILE_PERIOD}\""
          fi
    
          # cpumanager policy options
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/volume/testing/testing.go

    	if exist {
    		if nodeName == UncertainAttachNode {
    			return "/dev/vdb-test", nil
    		}
    		// even if volume was previously attached to time out, we need to keep returning error
    		// so as reconciler can not confirm this volume as attached.
    		if nodeName == TimeoutAttachNode {
    			return "", fmt.Errorf("timed out to attach volume %q to node %q", volumeName, nodeName)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. cmd/kubelet/app/options/options.go

    	fs.DurationVar(&c.CPUManagerReconcilePeriod.Duration, "cpu-manager-reconcile-period", c.CPUManagerReconcilePeriod.Duration, "<Warning: Alpha feature> CPU Manager reconciliation period. Examples: '10s', or '1m'. If not supplied, defaults to 'NodeStatusUpdateFrequency'")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/endpointslice_controller_test.go

    	"k8s.io/utils/pointer"
    )
    
    // Most of the tests related to EndpointSlice allocation can be found in reconciler_test.go
    // Tests here primarily focus on unique controller functionality before the reconciler begins
    
    var alwaysReady = func() bool { return true }
    
    type endpointSliceController struct {
    	*Controller
    	endpointSliceStore cache.Store
    	nodeStore          cache.Store
    	podStore           cache.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  8. pkg/kubelet/status/status_manager_test.go

    	testPod := getTestPod()
    	client := fake.NewSimpleClientset(testPod)
    	syncer := newTestManager(client)
    	syncer.SetPodStatus(testPod, getRandomPodStatus())
    	t.Logf("Call syncBatch directly to test reconcile")
    	syncer.syncBatch(true) // The apiStatusVersions should be set now
    	client.ClearActions()
    
    	podStatus, ok := syncer.GetPodStatus(testPod.UID)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/api__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
    - 1.8M bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    			return err
    		}
    	}
    	return nil
    }
    
    // getPodsForJob returns the set of pods that this Job should manage.
    // It also reconciles ControllerRef by adopting/orphaning, adding tracking
    // finalizers.
    // Note that the returned Pods are pointers into the cache.
    func (jm *Controller) getPodsForJob(ctx context.Context, j *batch.Job) ([]*v1.Pod, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top