Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for SystemCgroups (0.33 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/kubemark/hollow_kubelet.go

    	c.MaxOpenFiles = 1024
    	c.RegistryBurst = 10
    	c.RegistryPullQPS = 5.0
    	c.ResolverConfig = kubetypes.ResolvConfDefault
    	c.KubeletCgroups = "/kubelet"
    	c.SerializeImagePulls = true
    	c.SystemCgroups = ""
    	c.ProtectKernelDefaults = false
    	c.RegisterWithTaints = opt.RegisterWithTaints
    	c.RegisterNode = true
    	c.LocalStorageCapacityIsolation = true
    	c.PodLogsDir = podLogsPath
    
    	return f, c
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	out.VolumeStatsAggPeriod = in.VolumeStatsAggPeriod
    	out.KubeletCgroups = in.KubeletCgroups
    	out.SystemCgroups = in.SystemCgroups
    	out.CgroupRoot = in.CgroupRoot
    	if err := v1.Convert_Pointer_bool_To_bool(&in.CgroupsPerQOS, &out.CgroupsPerQOS, s); err != nil {
    		return err
    	}
    	out.CgroupDriver = in.CgroupDriver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				ImageGCHighThresholdPercent:      utilpointer.Int32(0),
    				ImageGCLowThresholdPercent:       utilpointer.Int32(0),
    				VolumeStatsAggPeriod:             zeroDuration,
    				KubeletCgroups:                   "",
    				SystemCgroups:                    "",
    				CgroupRoot:                       "",
    				CgroupsPerQOS:                    utilpointer.Bool(false),
    				CgroupDriver:                     "",
    				CPUManagerPolicy:                 "",
    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/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)
  7. cmd/kubelet/app/server.go

    		// RuntimeCgroups is optional, so ignore if it isn't specified
    		cgroupRoots = append(cgroupRoots, s.RuntimeCgroups)
    	}
    
    	if s.SystemCgroups != "" {
    		// SystemCgroups is optional, so ignore if it isn't specified
    		cgroupRoots = append(cgroupRoots, s.SystemCgroups)
    	}
    
    	if kubeDeps.CAdvisorInterface == nil {
    		imageFsInfoProvider := cadvisor.NewImageFsInfoProvider(s.ContainerRuntimeEndpoint)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"systemCgroups": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top