Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for colgroup (0.17 sec)

  1. pkg/kubelet/stats/cadvisor_stats_provider.go

    // the stats of the terminated containers removed and all containerInfos assembled by pod cgroup key.
    // the first return map is container cgroup name <-> ContainerInfo and
    // the second return map is pod cgroup key <-> ContainerInfo.
    // A ContainerInfo is considered to be of a terminated container if it has an
    // older CreationTime and zero CPU instantaneous and memory RSS usage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager_linux.go

    	// Check if Cgroup-root actually exists on the node
    	if nodeConfig.CgroupsPerQOS {
    		// this does default to / when enabled, but this tests against regressions.
    		if nodeConfig.CgroupRoot == "" {
    			return nil, fmt.Errorf("invalid configuration: cgroups-per-qos was specified and cgroup-root was not specified. To enable the QoS cgroup hierarchy you need to specify a valid cgroup-root")
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pkg/registry/core/persistentvolumeclaim/strategy_test.go

    func TestPrepareForCreate(t *testing.T) {
    	ctx := genericapirequest.NewDefaultContext()
    
    	ns := "ns1"
    	volumeDataSource := makeDataSource(coreGroup, pvcKind, "my-vol")
    	volumeDataSourceRef := makeDataSourceRef(coreGroup, pvcKind, "my-vol", nil)
    	xnsVolumeDataSourceRef := makeDataSourceRef(coreGroup, pvcKind, "my-vol", &ns)
    	snapshotDataSource := makeDataSource(snapGroup, snapKind, "my-snap")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		p := "/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes"
    		if isCgroup2UnifiedMode() {
    			// memory.swap.max does not exist in the cgroup root, so we check /sys/fs/cgroup/<SELF>/memory.swap.max
    			_, unified, err := cgroups.ParseCgroupFileUnified("/proc/self/cgroup")
    			if err != nil {
    				klog.V(5).ErrorS(fmt.Errorf("failed to parse /proc/self/cgroup: %w", err), warn)
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/helpers_linux.go

    // getCgroupSubsystemsV1 returns information about the mounted cgroup v1 subsystems
    func getCgroupSubsystemsV1() (*CgroupSubsystems, error) {
    	// get all cgroup mounts.
    	allCgroups, err := libcontainercgroups.GetCgroupMounts(true)
    	if err != nil {
    		return &CgroupSubsystems{}, err
    	}
    	if len(allCgroups) == 0 {
    		return &CgroupSubsystems{}, fmt.Errorf("failed to find cgroup mounts")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. src/syscall/exec_linux_test.go

    	// Otherwise it's either cgroup v1 or a hybrid hierarchy.
    	if bytes.Count(selfCg, []byte("\n")) > 1 {
    		t.Skip("cgroup v2 not available")
    	}
    	cg := bytes.TrimPrefix(selfCg, []byte("0::"))
    	if len(cg) == len(selfCg) { // No prefix found.
    		t.Skipf("cgroup v2 not available (/proc/self/cgroup contents: %q)", selfCg)
    	}
    
    	// Need an ability to create a sub-cgroup.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    				User: &user.DefaultInfo{
    					Name:   "nobody",
    					Groups: []string{user.AllAuthenticated, "nogroup"},
    				},
    			}},
    			true: {{
    				RequestInfo: &request.RequestInfo{
    					IsResourceRequest: true,
    					Verb:              "mandate",
    					APIGroup:          "nogroup",
    					Namespace:         "nospace",
    					Resource:          "nons",
    				},
    				User: &user.DefaultInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/validation/validation.go

    		// --reserved-cpus does not support --system-reserved-cgroup or --kube-reserved-cgroup
    		if kc.SystemReservedCgroup != "" || kc.KubeReservedCgroup != "" {
    			allErrors = append(allErrors, fmt.Errorf("invalid configuration: can't use reservedSystemCPUs (--reserved-cpus) with systemReservedCgroup (--system-reserved-cgroup) or kubeReservedCgroup (--kube-reserved-cgroup)"))
    		}
    		if _, err := cpuset.Parse(kc.ReservedSystemCPUs); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/validation/validation_test.go

    			conf.SystemReservedCgroup = "/system.slice"
    			return conf
    		},
    		errMsg: "invalid configuration: can't use reservedSystemCPUs (--reserved-cpus) with systemReservedCgroup (--system-reserved-cgroup) or kubeReservedCgroup (--kube-reserved-cgroup)",
    	}, {
    		name: "specify ReservedSystemCPUs with KubeReservedCgroup",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. cmd/handler-api.go

    	gzipObjects                 bool
    	rootAccess                  bool
    	syncEvents                  bool
    	objectMaxVersions           int64
    }
    
    const (
    	cgroupV1MemLimitFile = "/sys/fs/cgroup/memory/memory.limit_in_bytes"
    	cgroupV2MemLimitFile = "/sys/fs/cgroup/memory.max"
    	cgroupMemNoLimit     = 9223372036854771712
    )
    
    func cgroupMemLimit() (limit uint64) {
    	buf, err := os.ReadFile(cgroupV2MemLimitFile)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top