Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for QOSReserved (0.18 sec)

  1. pkg/kubelet/cm/qos_container_manager_linux.go

    			cgroupRoot: cgroupRoot,
    		}, nil
    	}
    
    	return &qosContainerManagerImpl{
    		subsystems:    subsystems,
    		cgroupManager: cgroupManager,
    		cgroupRoot:    cgroupRoot,
    		qosReserved:   nodeConfig.QOSReserved,
    	}, nil
    }
    
    func (m *qosContainerManagerImpl) GetQOSContainersInfo() QOSContainersInfo {
    	return m.qosContainersInfo
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/qos_container_manager_linux_test.go

    	qosContainerManager := &qosContainerManagerImpl{
    		subsystems:    subsystems,
    		cgroupManager: NewCgroupManager(subsystems, "cgroupfs"),
    		cgroupRoot:    cgroupRoot,
    		qosReserved:   nil,
    	}
    
    	qosContainerManager.activePods = activeTestPods
    
    	return qosContainerManager, nil
    }
    
    func TestQoSContainerCgroup(t *testing.T) {
    	m, err := createTestQOSContainerManager()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/zz_generated.deepcopy.go

    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.QOSReserved != nil {
    		in, out := &in.QOSReserved, &out.QOSReserved
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	out.RuntimeRequestTimeout = in.RuntimeRequestTimeout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 09 11:19:11 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.TopologyManagerPolicy = kubeletconfig.NoneTopologyManagerPolicy
    			obj.TopologyManagerScope = kubeletconfig.ContainerTopologyManagerScope
    			obj.TopologyManagerPolicyOptions = make(map[string]string)
    			obj.QOSReserved = map[string]string{
    				"memory": "50%",
    			}
    			obj.OOMScoreAdj = int32(qos.KubeletOOMScoreAdj)
    			obj.PodLogsDir = "/var/log/pods"
    			obj.Port = ports.KubeletPort
    			obj.ReadOnlyPort = ports.KubeletReadOnlyPort
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				CPUManagerReconcilePeriod:        zeroDuration,
    				MemoryManagerPolicy:              "",
    				TopologyManagerPolicy:            "",
    				TopologyManagerScope:             "",
    				QOSReserved:                      map[string]string{},
    				RuntimeRequestTimeout:            zeroDuration,
    				HairpinMode:                      "",
    				MaxPods:                          0,
    				PodCIDR:                          "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	out.TopologyManagerScope = in.TopologyManagerScope
    	out.TopologyManagerPolicyOptions = *(*map[string]string)(unsafe.Pointer(&in.TopologyManagerPolicyOptions))
    	out.QOSReserved = *(*map[string]string)(unsafe.Pointer(&in.QOSReserved))
    	out.RuntimeRequestTimeout = in.RuntimeRequestTimeout
    	out.HairpinMode = in.HairpinMode
    	out.MaxPods = in.MaxPods
    	out.PodCIDR = in.PodCIDR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/container_manager.go

    	ContainerRuntime      string
    	CgroupsPerQOS         bool
    	CgroupRoot            string
    	CgroupDriver          string
    	KubeletRootDir        string
    	ProtectKernelDefaults bool
    	NodeAllocatableConfig
    	QOSReserved                             map[v1.ResourceName]int64
    	CPUManagerPolicy                        string
    	CPUManagerPolicyOptions                 map[string]string
    	TopologyManagerScope                    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/helpers_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pkg/features/kube_features.go

    	// alpha: v1.11
    	//
    	// Allows resource reservations at the QoS level preventing pods at lower QoS levels from
    	// bursting into resources requested at higher QoS levels (memory only for now)
    	QOSReserved featuregate.Feature = "QOSReserved"
    
    	// owner: @gnufied
    	// kep: https://kep.k8s.io/1790
    	// alpha: v1.23
    	//
    	// Allow users to recover from volume expansion failure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/types.go

    	TopologyManagerPolicyOptions map[string]string
    	// Map of QoS resource reservation percentages (memory only for now).
    	// Requires the QOSReserved feature gate to be enabled.
    	QOSReserved map[string]string
    	// runtimeRequestTimeout is the timeout for all runtime requests except long running
    	// requests - pull, logs, exec and attach.
    	RuntimeRequestTimeout metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top