Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for CgroupDriver (0.45 sec)

  1. pkg/kubelet/cm/pod_container_manager_linux_test.go

    			expectedResult: false,
    			expectedUID:    types.UID(""),
    		},
    	}
    	for _, cgroupDriver := range []string{"cgroupfs", "systemd"} {
    		pcm := &podContainerManagerImpl{
    			cgroupManager:     NewCgroupManager(nil, cgroupDriver),
    			enforceCPULimits:  true,
    			qosContainersInfo: qosContainersInfo,
    		}
    		for _, testCase := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 08 13:06:38 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/componentconfigs/kubelet_test.go

    					},
    					HealthzBindAddress: kubeletHealthzBindAddress,
    					HealthzPort:        ptr.To[int32](constants.KubeletHealthzPort),
    					RotateCertificates: kubeletRotateCertificates,
    					CgroupDriver:       constants.CgroupDriverSystemd,
    				},
    			},
    		},
    		{
    			name: "Service subnet, no dual stack defaulting works",
    			clusterCfg: kubeadmapi.ClusterConfiguration{
    				Networking: kubeadmapi.Networking{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/componentconfigs/kubelet.go

    	kc.config.RotateCertificates = kubeletRotateCertificates
    
    	if len(kc.config.CgroupDriver) == 0 {
    		klog.V(1).Infof("the value of KubeletConfiguration.cgroupDriver is empty; setting it to %q", constants.CgroupDriverSystemd)
    		kc.config.CgroupDriver = constants.CgroupDriverSystemd
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

    authentication:
      anonymous:
        enabled: false
      webhook:
        cacheTTL: 2m0s
        enabled: true
      x509: {}
    authorization:
      mode: Webhook
      webhook:
        cacheAuthorizedTTL: 5m0s
        cacheUnauthorizedTTL: 30s
    cgroupDriver: cgroupfs
    cgroupsPerQOS: true
    configMapAndSecretChangeDetectionStrategy: Watch
    containerLogMaxFiles: 5
    containerLogMaxSize: 10Mi
    containerLogMaxWorkers: 1
    containerLogMonitorInterval: 10s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/roundtrip/default/v1beta1.yaml

    authentication:
      anonymous:
        enabled: false
      webhook:
        cacheTTL: 2m0s
        enabled: true
      x509: {}
    authorization:
      mode: Webhook
      webhook:
        cacheAuthorizedTTL: 5m0s
        cacheUnauthorizedTTL: 30s
    cgroupDriver: cgroupfs
    cgroupsPerQOS: true
    configMapAndSecretChangeDetectionStrategy: Watch
    containerLogMaxFiles: 5
    containerLogMaxSize: 10Mi
    containerLogMaxWorkers: 1
    containerLogMonitorInterval: 10s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				VolumeStatsAggPeriod:                      metav1.Duration{Duration: time.Minute},
    				CgroupsPerQOS:                             utilpointer.Bool(true),
    				CgroupDriver:                              "cgroupfs",
    				CPUManagerPolicy:                          "none",
    				CPUManagerReconcilePeriod:                 metav1.Duration{Duration: 10 * time.Second},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/v1beta1/defaults.go

    		obj.VolumeStatsAggPeriod = metav1.Duration{Duration: time.Minute}
    	}
    	if obj.CgroupsPerQOS == nil {
    		obj.CgroupsPerQOS = utilpointer.Bool(true)
    	}
    	if obj.CgroupDriver == "" {
    		obj.CgroupDriver = "cgroupfs"
    	}
    	if obj.CPUManagerPolicy == "" {
    		obj.CPUManagerPolicy = "none"
    	}
    	if obj.CPUManagerReconcilePeriod == zeroDuration {
    		// Keep the same as default NodeStatusUpdateFrequency
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/helpers_unsupported.go

    func GetPodCgroupNameSuffix(podUID types.UID) string {
    	return ""
    }
    
    // NodeAllocatableRoot returns the literal cgroup path for the node allocatable cgroup
    func NodeAllocatableRoot(cgroupRoot string, cgroupsPerQOS bool, cgroupDriver string) string {
    	return ""
    }
    
    // GetKubeletContainer returns the cgroup the kubelet will use
    func GetKubeletContainer(kubeletCgroups string) (string, error) {
    	return "", nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/helpers_linux.go

    func NodeAllocatableRoot(cgroupRoot string, cgroupsPerQOS bool, cgroupDriver string) string {
    	nodeAllocatableRoot := ParseCgroupfsToCgroupName(cgroupRoot)
    	if cgroupsPerQOS {
    		nodeAllocatableRoot = NewCgroupName(nodeAllocatableRoot, defaultNodeAllocatableCgroupName)
    	}
    	if cgroupDriver == "systemd" {
    		return nodeAllocatableRoot.ToSystemd()
    	}
    	return nodeAllocatableRoot.ToCgroupfs()
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.MakeIPTablesUtilChains = true
    			obj.IPTablesMasqueradeBit = kubeletconfigv1beta1.DefaultIPTablesMasqueradeBit
    			obj.IPTablesDropBit = kubeletconfigv1beta1.DefaultIPTablesDropBit
    			obj.CgroupsPerQOS = true
    			obj.CgroupDriver = "cgroupfs"
    			obj.EnforceNodeAllocatable = kubeletconfigv1beta1.DefaultNodeAllocatableEnforcement
    			obj.StaticPodURLHeader = make(map[string][]string)
    			obj.ContainerLogMaxFiles = 5
    			obj.ContainerLogMaxSize = "10Mi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top