Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for allocable (0.25 sec)

  1. CHANGELOG/CHANGELOG-1.20.md

      - Remove redundant logging around calculating node utilization
      - Add configurable `--network` and `--rm` flags for docker in `Makefile`
      - Subtract DaemonSet pods' requests from node allocatable in the denominator while computing node utilization
      - Include taints by condition when determining if a node is unready/still starting
      - Fix `update-vendor.sh` to work on OSX and zsh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.9.md

    * Fix issue where on re-registration of device plugin, `allocatable` was not getting updated. This issue makes devices invisible to the Kubelet if device plugin restarts. Only work-around, if this fix is not there, is to restart the kubelet and then start device plugin. ([#63118](https://github.com/kubernetes/k...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	s.f.ABI1 = ssaConfig.ABI1
    	s.f.ABIDefault = abiForFunc(nil, ssaConfig.ABI0, ssaConfig.ABI1)
    	s.f.ABISelf = abiSelf
    
    	s.panics = map[funcLine]*ssa.Block{}
    	s.softFloat = s.config.SoftFloat
    
    	// Allocate starting block
    	s.f.Entry = s.f.NewBlock(ssa.BlockPlain)
    	s.f.Entry.Pos = fn.Pos()
    	s.f.IsPgoHot = isPgoHot
    
    	if printssa {
    		ssaDF := ssaDumpFile
    		if ssaDir != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, ValidateResourceQuantityValue(k, v, resPath)...)
    	}
    
    	// Validate resource quantities in allocatable.
    	for k, v := range node.Status.Allocatable {
    		resPath := field.NewPath("status", "allocatable", string(k))
    		allErrs = append(allErrs, ValidateResourceQuantityValue(k, v, resPath)...)
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "stdin": {
                "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
                "type": "boolean"
              },
              "stdinOnce": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.13.md

    ### SIG Storage
    
    - Fixed CSI volume limits not showing up in node's capacity and allocatable ([#70540](https://github.com/kubernetes/kubernetes/pull/70540), [@gnufied](https://github.com/gnufied))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

      * For alpha, volume resizing supports only Gluster volumes.
    
    * [alpha] Provide capacity isolation and resource management for local ephemeral storage
    
      * You can now set container requests, container limits, and node allocatable reservations for the new `ephemeral-storage` resource.
    
      * The `ephemeral-storage` resource includes all the disk space a container might consume with container overlay or scratch.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/zz_generated.conversion.go

    func autoConvert_v1_NodeStatus_To_core_NodeStatus(in *v1.NodeStatus, out *core.NodeStatus, s conversion.Scope) error {
    	out.Capacity = *(*core.ResourceList)(unsafe.Pointer(&in.Capacity))
    	out.Allocatable = *(*core.ResourceList)(unsafe.Pointer(&in.Allocatable))
    	out.Phase = core.NodePhase(in.Phase)
    	out.Conditions = *(*[]core.NodeCondition)(unsafe.Pointer(&in.Conditions))
    	out.Addresses = *(*[]core.NodeAddress)(unsafe.Pointer(&in.Addresses))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.7.md

      * Prevent kubelet from setting allocatable < 0 for a resource upon initial creation. ([#46516](https://github.com/kubernetes/kubernetes/pull/46516), [@derekwaynecarr](https://github.com/derekwaynecarr))
    
    * Bug fixes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.12.md

    * remove retry operation on attach/detach  azure disk ([#70568](https://github.com/kubernetes/kubernetes/pull/70568), [@andyzhangx](https://github.com/andyzhangx))
    * Fix CSI volume limits not showing up in node's capacity and allocatable ([#70540](https://github.com/kubernetes/kubernetes/pull/70540), [@gnufied](https://github.com/gnufied))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
Back to top