Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for orphaned (0.2 sec)

  1. pkg/kubelet/pod_workers_test.go

    			},
    			orphan:  true,
    			removed: false,
    		},
    		{
    			desc: "orphaned terminating worker with no activeUpdate",
    			podSyncStatus: &podSyncStatus{
    				startedAt:     time.Unix(1, 0),
    				terminatingAt: time.Unix(2, 0),
    				finished:      false,
    				fullname:      "fake-fullname",
    			},
    			orphan:  true,
    			removed: false,
    		},
    		{
    			desc: "orphaned terminating worker",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    		_, knownPod := known[uid]
    		orphan := !knownPod
    		if status.restartRequested || orphan {
    			if p.removeTerminatedWorker(uid, status, orphan) {
    				// no worker running, we won't return it
    				continue
    			}
    		}
    
    		sync := PodWorkerSync{
    			State:  status.WorkType(),
    			Orphan: orphan,
    		}
    		switch {
    		case status.activeUpdate != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager_test.go

    	mirrorPod.Name = "mirror_pod"
    	mirrorPod.Annotations = map[string]string{
    		kubetypes.ConfigSourceAnnotationKey: "api",
    		kubetypes.ConfigMirrorAnnotationKey: "mirror",
    	}
    
    	t.Logf("Orphaned pods should be removed.")
    	m.apiStatusVersions[kubetypes.MirrorPodUID(testPod.UID)] = 100
    	m.apiStatusVersions[kubetypes.MirrorPodUID(mirrorPod.UID)] = 200
    	m.syncBatch(true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager_test.go

    // Tests that the device plugin manager correctly handles registration and re-registration by
    // making sure that after registration, devices are correctly updated and if a re-registration
    // happens, we will NOT delete devices; and no orphaned devices left.
    func TestDevicePluginReRegistration(t *testing.T) {
    	// TODO: Remove skip once https://github.com/kubernetes/kubernetes/pull/115269 merges.
    	if goruntime.GOOS == "windows" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller.go

    		dsc.enqueueDaemonSet(ds)
    		return
    	}
    
    	// Otherwise, it's an orphan. Get a list of all matching DaemonSets and sync
    	// them to see if anyone wants to adopt it.
    	// DO NOT observe creation because no controller should be waiting for an
    	// orphan.
    	dss := dsc.getDaemonSetsForPod(pod)
    	if len(dss) == 0 {
    		return
    	}
    	logger.V(4).Info("Orphan Pod added", "pod", klog.KObj(pod))
    	for _, ds := range dss {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	dswp.ReprocessPod(podName)
    	dswp.findAndRemoveDeletedPods()
    
    	// findAndRemoveDeletedPods() above must detect orphaned pod and delete it from the map
    	if _, ok := dswp.pods.processedPods[podName]; ok {
    		t.Fatalf("Failed to remove orphanded pods from internal map")
    	}
    
    	volumeExists := dswp.desiredStateOfWorld.VolumeExists(expectedVolumeName, "" /* SELinuxContext */)
    	if volumeExists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                        edge("org:leaf2:[1,7]", "org:leaf2:4")
                    }
                }
            }
        }
    
        def "previously selected transitive dependency is not used when it becomes orphaned because of selection of a different version of its dependent module"() {
            given:
            (1..10).each {
                def dep = mavenRepo.module('org', 'zdep', "$it").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    		svcInfo.cleanupAllPolicies(proxier.endpointsMap[*svcPortName], proxier.mapStaleLoadbalancers, true)
    	} else {
    		// If no service exists, just cleanup the remote endpoints
    		klog.V(3).InfoS("Endpoints are orphaned, cleaning up")
    		// Cleanup Endpoints references
    		epInfos, exists := proxier.endpointsMap[*svcPortName]
    
    		if exists {
    			// Cleanup Endpoints references
    			for _, ep := range epInfos {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. src/html/template/escape_test.go

    	tests := []struct {
    		input  string
    		output context
    	}{
    		{
    			``,
    			context{},
    		},
    		{
    			`Hello, World!`,
    			context{},
    		},
    		{
    			// An orphaned "<" is OK.
    			`I <3 Ponies!`,
    			context{},
    		},
    		{
    			`<a`,
    			context{state: stateTag},
    		},
    		{
    			`<a `,
    			context{state: stateTag},
    		},
    		{
    			`<a>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"orphanDependents":   "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
Back to top