Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SystemCgroups (0.32 sec)

  1. pkg/kubelet/apis/config/validation/validation_test.go

    	}, {
    		name: "specify SystemCgroups without CgroupRoot",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.SystemCgroups = "/"
    			conf.CgroupRoot = ""
    			return conf
    		},
    		errMsg: "invalid configuration: systemCgroups (--system-cgroups) was specified and cgroupRoot (--cgroup-root) was not specified",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/validation/validation.go

    	}
    	if kc.SystemCgroups != "" && kc.CgroupRoot == "" {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: systemCgroups (--system-cgroups) was specified and cgroupRoot (--cgroup-root) was not specified"))
    	}
    	if kc.EventBurst < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/helpers_test.go

    		"ShutdownGracePeriodByPodPriority[*].Priority",
    		"ShutdownGracePeriodByPodPriority[*].ShutdownGracePeriodSeconds",
    		"StreamingConnectionIdleTimeout.Duration",
    		"SyncFrequency.Duration",
    		"SystemCgroups",
    		"SystemReservedCgroup",
    		"SystemReserved[*]",
    		"TypeMeta.APIVersion",
    		"TypeMeta.Kind",
    		"VolumeStatsAggPeriod.Duration",
    		"VolumePluginDir",
    		"ShutdownGracePeriod.Duration",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/types.go

    	// KubeletCgroups is the absolute name of cgroups to isolate the kubelet in
    	KubeletCgroups string
    	// SystemCgroups is absolute name of cgroups in which to place
    	// all non-kernel processes that are not already in a container. Empty
    	// for no container. Rolling back the flag requires a reboot.
    	SystemCgroups string
    	// CgroupRoot is the root cgroup to use for pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.KubeletCgroups, "kubelet-cgroups", c.KubeletCgroups, "Optional absolute name of cgroups to create and run the Kubelet in.")
    	fs.StringVar(&c.SystemCgroups, "system-cgroups", c.SystemCgroups, "Optional absolute name of cgroups in which to place all non-kernel processes that are not already inside a cgroup under '/'. Empty for no container. Rolling back the flag requires a reboot.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top