Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 168 for orphaned (0.32 sec)

  1. CHANGELOG/CHANGELOG-1.21.md

    - Kubectl: Fixed panic when describing an ingress backend without an API Group ([#100505](https://github.com/kubernetes/kubernetes/pull/100505), [@lauchokyip](https://github.com/lauchokyip)) [SIG CLI]
    - Kubelet now cleans up orphaned volume directories automatically ([#95301](https://github.com/kubernetes/kubernetes/pull/95301), [@lorenz](https://github.com/lorenz)) [SIG Node and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/fields/selector_test.go

    			t.Errorf("UnescapeValue(%s): expected %s, got %s", escapedValue, unescapedValue, actualUnescaped)
    		}
    	}
    
    	// test invalid escape sequences
    	invalidTestcases := []string{
    		`\`,   // orphan slash is invalid
    		`\\\`, // orphan slash is invalid
    		`\a`,  // unrecognized escape sequence is invalid
    	}
    	for _, invalidValue := range invalidTestcases {
    		_, err := UnescapeValue(invalidValue)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 08:00:38 UTC 2017
    - 11.2K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler.go

    	// that is still needed, but it did not reach DSW yet.
    	if readyToUnmount {
    		// Ensure devices that should be detached/unmounted are detached/unmounted.
    		rc.unmountDetachDevices()
    
    		// Clean up any orphan volumes that failed reconstruction.
    		rc.cleanOrphanVolumes()
    	}
    
    	if len(rc.volumesNeedUpdateFromNodeStatus) != 0 {
    		rc.updateReconstructedFromNodeStatus()
    	}
    	if len(rc.volumesNeedUpdateFromNodeStatus) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. pkg/controller/history/controller_history_test.go

    			selector:  sel1,
    			revisions: []*apps.ControllerRevision{ss1Rev1, ss1Rev2, ss2Rev1},
    			want:      map[string]bool{ss1Rev1.Name: true, ss1Rev2.Name: true},
    		},
    		{
    			name:      "selects orphans",
    			parent:    &ss1.ObjectMeta,
    			selector:  sel1,
    			revisions: []*apps.ControllerRevision{ss1Rev1, ss1Rev2, ss1Orphan},
    			want:      map[string]bool{ss1Rev1.Name: true, ss1Rev2.Name: true, ss1Orphan.Name: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    			}
    			orphanPod := podBuilder.Pod
    			orphanPod, err := clientset.CoreV1().Pods("default").Create(ctx, orphanPod, metav1.CreateOptions{})
    			if err != nil {
    				t.Fatalf("Creating orphan pod: %v", err)
    			}
    			err = manager.syncOrphanPod(ctx, cache.MetaObjectToName(orphanPod).String())
    			if err != nil {
    				t.Fatalf("Failed sync orphan pod: %v", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.20.md

    - Fixing a bug where a failed node may not have the NoExecute taint set correctly ([#98168](https://github.com/kubernetes/kubernetes/pull/98168), [@CKchen0726](https://github.com/CKchen0726)) [SIG Apps and Node]
    - Kubelet now cleans up orphaned volume directories automatically ([#95301](https://github.com/kubernetes/kubernetes/pull/95301), [@lorenz](https://github.com/lorenz)) [SIG Node and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  7. pkg/controller/servicecidrs/servicecidrs_controller.go

    		return err
    	}
    
    	return nil
    }
    
    // canDeleteCIDR checks that the ServiceCIDR can be safely deleted and not leave orphan IPAddresses
    func (c *Controller) canDeleteCIDR(ctx context.Context, serviceCIDR *networkingapiv1alpha1.ServiceCIDR) (bool, error) {
    	// TODO(aojea) Revisit the lock usage and if we need to keep it only for the tree operations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

      - PreemptionByKubeScheduler (Pod preempted by kube-scheduler)
      - DeletionByTaintManager (Pod deleted by taint manager due to NoExecute taint)
      - EvictionByEvictionAPI (Pod evicted by Eviction API)
      - DeletionByPodGC (an orphaned Pod deleted by PodGC) ([#110959](https://github.com/kubernetes/kubernetes/pull/110959), [@mimowo](https://github.com/mimowo))
    - Kube-Scheduler ComponentConfig is graduated to GA, `kubescheduler.config.k8s.io/v1` is available now.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - Fix: After a Node is down and take some time to get back to up again, the mount point of the evicted Pods cannot be cleaned up successfully. (#111933) Meanwhile Kubelet will print the log `Orphaned pod "xxx" found, but error not a directory occurred when trying to remove the volumes dir` every 2 seconds. (#105536) ([#116134](https://github.com/kubernetes/kubernetes/pull/116134), [@cvvz](https://github.com/cvvz)) [SIG Node and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  10. src/internal/coverage/pods/pods_test.go

    	mkmeta(o1, "m1")
    	mkcounter(o1, "m1", 1, 42)
    	mkcounter(o1, "m1", 2, 41)
    	mkcounter(o1, "m1", 2, 40)
    
    	// Add a counter file with no associated meta file.
    	mkcounter(o1, "orphan", 9, 39)
    
    	// Add a meta-data file with three counter files to second dir.
    	mkmeta(o2, "m2")
    	mkcounter(o2, "m2", 1, 38)
    	mkcounter(o2, "m2", 2, 37)
    	mkcounter(o2, "m2", 3, 36)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 14:00:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top