Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Unmount (0.14 sec)

  1. pkg/kubelet/kubelet.go

    		return false, err
    	}
    
    	// Wait for volumes to attach/mount
    	if err := kl.volumeManager.WaitForAttachAndMount(ctx, pod); err != nil {
    		if !wait.Interrupted(err) {
    			kl.recorder.Eventf(pod, v1.EventTypeWarning, events.FailedMountVolume, "Unable to attach or mount volumes: %v", err)
    			klog.ErrorS(err, "Unable to attach or mount volumes for pod; skipping pod", "pod", klog.KObj(pod))
    		}
    		return false, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pilot/pkg/features/pilot.go

    	WorkloadEntryCleanupGracePeriod = env.Register("PILOT_WORKLOAD_ENTRY_GRACE_PERIOD", 10*time.Second,
    		"The amount of time an auto-registered workload can remain disconnected from all Pilot instances before the "+
    			"associated WorkloadEntry is cleaned up.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    				return <-con.ErrorCh()
    			}
    		case <-con.StopCh():
    			return nil
    		default:
    		}
    		// If there wasn't already a request, poll for requests and pushes. Note: if we have a huge
    		// amount of incoming requests, we may still send some pushes, as we do not `continue` above;
    		// however, requests will be handled ~2x as much as pushes. This ensures a wave of requests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top