Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Reconciled (0.13 sec)

  1. pkg/kubelet/pod_workers.go

    		}
    	}
    	// StartTime is not copied - that is purely for tracking latency of config propagation
    	// from kubelet to pod worker.
    }
    
    // podWorkers keeps track of operations on pods and ensures each pod is
    // reconciled with the container runtime and other subsystems. The worker
    // also tracks which pods are in flight for starting, which pods are
    // shutting down but still have running containers, and which pods have
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    - Endpointslices mirrored from Endpoints by the EndpointSliceMirroring controller were not reconciled if modified ([#124131](https://github.com/kubernetes/kubernetes/pull/124131), [@zyjhtangtang](https://github.com/zyjhtangtang)) [SIG Apps and Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	assert.False(t, reconciler.StatesHasBeenSynced())
    
    	reconciler.volumesNeedUpdateFromNodeStatus = append(reconciler.volumesNeedUpdateFromNodeStatus, volumeName1, volumeName2)
    	// Act - run reconcile loop just once.
    	// "volumesNeedUpdateFromNodeStatus" is not empty, so no unmount will be triggered.
    	reconciler.reconcile()
    
    	// Assert
    	assert.True(t, reconciler.StatesHasBeenSynced())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	nodeLister := informerFactory.Core().V1().Nodes().Lister()
    	reconciler := NewReconciler(
    		reconcilerLoopPeriod, maxWaitForUnmountDuration, syncLoopPeriod, false, false, dsw, asw, ad, nsu, nodeLister, fakeRecorder)
    
    	// Act
    	_, ctx := ktesting.NewTestContext(t)
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    	go reconciler.Run(ctx)
    
    	// Assert
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	taintEvictionController = "taint-eviction-controller"
    )
    
    // labelReconcileInfo lists Node labels to reconcile, and how to reconcile them.
    // primaryKey and secondaryKey are keys of labels to reconcile.
    //   - If both keys exist, but their values don't match. Use the value from the
    //     primaryKey as the source of truth to reconcile.
    //   - If ensureSecondaryExists is true, and the secondaryKey does not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options_test.go

    		expectErrors           bool
    		expectedErrorSubString string
    		options                interface {
    			Validate() []error
    		}
    	}{
    		{
    			name:                   "AttachDetachControllerOptions reconciler sync loop period less than one second",
    			expectErrors:           true,
    			expectedErrorSubString: "duration time must be greater than one second",
    			options: &AttachDetachControllerOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    		podName, expectedVolumeName, "" /* SELinuxContext */); !podExistsInVolume {
    		t.Fatalf(
    			"DSW PodExistsInVolume returned incorrect value. Expected: <true> Actual: <%v>",
    			podExistsInVolume)
    	}
    
    	// reconcile with actual state so that volume is added into the actual state
    	// desired state populator now can successfully delete the pod and volume
    	reconcileASW(fakeASW, dswp.desiredStateOfWorld, t)
    	dswp.findAndRemoveDeletedPods()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    			dsc.enqueueDaemonSet(ds)
    		}
    	}
    }
    
    // getDaemonPods returns daemon pods owned by the given ds.
    // This also reconciles ControllerRef by adopting/orphaning.
    // Note that returned Pods 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: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    				return true, err
    			}
    		}
    	}
    
    	return false, nil
    }
    
    // CreateThreeWayMergePatch reconciles a modified configuration with an original configuration,
    // while preserving any changes or deletions made to the original configuration in the interim,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  10. 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)
Back to top