Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for DRAINING (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    	// If `qCfg.DesiredNumQueues` is non-zero then dealer is not nil
    	// and is good for `qCfg`.
    	dealer *shufflesharding.Dealer
    
    	// queues may be longer than the desired number, while the excess
    	// queues are still draining.
    	queues []*queue
    
    	// currentR is the amount of seat-seconds allocated per queue since process startup.
    	// This is our generalization of the progress meter named R in the original fair queuing work.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.2.md

    support Replica Sets). It’s recommended to use Deployment 1.2 with “kubectl
    rollout” commands instead, if you want to rolling update Replica Sets.
      * When live upgrading Kubelet to 1.2 without draining the pods running on the node,
    the containers will be restarted by Kubelet (see details in [#23104](https://github.com/kubernetes/kubernetes/issues/23104)).
    
    #### Docker Known Issues
    
    ##### 1.9.1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			klog.V(3).Infof("Retaining mandatory priority level %q despite lack of API object", plName)
    		} else {
    			if plState.numPending == 0 && plState.queues.IsIdle() {
    				// The QueueSet is done
    				// draining and no use is coming from another
    				// goroutine
    				klog.V(3).Infof("Removing undesired priority level %q, Type=%v", plName, plState.pl.Spec.Type)
    				meal.cfgCtlr.MaxSeatsTracker.ForgetPriorityLevel(plName)
    				continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// note that we don't have to call setDrainInputBufferLocked method on the watchers
    	// because we take advantage of the default value - stop immediately
    	// also watchers that have had already its draining strategy set
    	// are no longer available (they were removed from the allWatchers and the valueWatchers maps)
    	if len(i.allWatchers) > 0 || len(i.valueWatchers) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - [Kube-proxy]: Implemented connection draining for terminating nodes. ([#116470](https://github.com/kubernetes/kubernetes/pull/116470), [@alexanderConstantinescu](https://github.com/alexanderConstantinescu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  6. src/net/http/transport_test.go

    			t.Error("body length is zero")
    		}
    	})).ts
    	c := ts.Client()
    	c.Transport.(*Transport).RegisterProtocol("http", roundTripFunc(func(r *Request) (*Response, error) {
    		// Draining body to trigger failure condition on actual request to server.
    		if n, _ := io.Copy(io.Discard, r.Body); n == 0 {
    			t.Error("body length is zero during round trip")
    		}
    		return nil, ErrSkipAltProtocol
    	}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - Upgraded `go-jose` to `v2.6.0` ([#115893](https://github.com/kubernetes/kubernetes/pull/115893), [@mgoltzsche](https://github.com/mgoltzsche))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	// and then advances the head pointer because we don't want to mess up the statuses of G's
    	// while runqdrain() and runqsteal() are running in parallel.
    	// Thus we should advance the head pointer before draining the local P into a gQueue,
    	// so that we can update any gp.schedlink only after we take the full ownership of G,
    	// meanwhile, other P's can't access to all G's in local P's runnable queue and steal them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.6.md

        that need to run prior to the network being ready.
    * **Enhance Kubelet QoS**:
      * Pods are placed under a new cgroup hierarchy by default. This feature requires
        draining and restarting the node as part of upgrades. To opt-out set
        `--cgroups-per-qos=false`.
      * If `kube-reserved` and/or `system-reserved` are specified, node allocatable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - Fixed an issue related to not draining all the pods in a namespace when an empty selector, i.e., "{}," is specified in a Pod Disruption Budget (PDB). ([#119732](https://github.com/kubernetes/kubernetes/pull/119732), [@sairameshv](https://github.com/sairameshv))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top