Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for MemoryManagerPolicy (0.32 sec)

  1. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

      format: text
      options:
        json:
          infoBufferSize: "0"
        text:
          infoBufferSize: "0"
      verbosity: 0
    makeIPTablesUtilChains: true
    maxOpenFiles: 1000000
    maxPods: 110
    memoryManagerPolicy: None
    memorySwap: {}
    memoryThrottlingFactor: 0.9
    nodeLeaseDurationSeconds: 40
    nodeStatusMaxImages: 50
    nodeStatusReportFrequency: 5m0s
    nodeStatusUpdateFrequency: 10s
    oomScoreAdj: -999
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/roundtrip/default/v1beta1.yaml

      format: text
      options:
        json:
          infoBufferSize: "0"
        text:
          infoBufferSize: "0"
      verbosity: 0
    makeIPTablesUtilChains: true
    maxOpenFiles: 1000000
    maxPods: 110
    memoryManagerPolicy: None
    memorySwap: {}
    memoryThrottlingFactor: 0.9
    nodeLeaseDurationSeconds: 40
    nodeStatusMaxImages: 50
    nodeStatusReportFrequency: 5m0s
    nodeStatusUpdateFrequency: 10s
    oomScoreAdj: -999
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				CgroupDriver:                              "cgroupfs",
    				CPUManagerPolicy:                          "none",
    				CPUManagerReconcilePeriod:                 metav1.Duration{Duration: 10 * time.Second},
    				MemoryManagerPolicy:                       v1beta1.NoneMemoryManagerPolicy,
    				TopologyManagerPolicy:                     v1beta1.NoneTopologyManagerPolicy,
    				TopologyManagerScope:                      v1beta1.ContainerTopologyManagerScope,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/v1beta1/defaults.go

    	if obj.CPUManagerReconcilePeriod == zeroDuration {
    		// Keep the same as default NodeStatusUpdateFrequency
    		obj.CPUManagerReconcilePeriod = metav1.Duration{Duration: 10 * time.Second}
    	}
    	if obj.MemoryManagerPolicy == "" {
    		obj.MemoryManagerPolicy = kubeletconfigv1beta1.NoneMemoryManagerPolicy
    	}
    	if obj.TopologyManagerPolicy == "" {
    		obj.TopologyManagerPolicy = kubeletconfigv1beta1.NoneTopologyManagerPolicy
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.ImageGCHighThresholdPercent = 85
    			obj.ImageGCLowThresholdPercent = 80
    			obj.KernelMemcgNotification = false
    			obj.MaxOpenFiles = 1000000
    			obj.MaxPods = 110
    			obj.MemoryManagerPolicy = v1beta1.NoneMemoryManagerPolicy
    			obj.PodPidsLimit = -1
    			obj.NodeStatusUpdateFrequency = metav1.Duration{Duration: 10 * time.Second}
    			obj.NodeStatusReportFrequency = metav1.Duration{Duration: time.Minute}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	out.CPUManagerPolicy = in.CPUManagerPolicy
    	out.CPUManagerPolicyOptions = *(*map[string]string)(unsafe.Pointer(&in.CPUManagerPolicyOptions))
    	out.CPUManagerReconcilePeriod = in.CPUManagerReconcilePeriod
    	out.MemoryManagerPolicy = in.MemoryManagerPolicy
    	out.TopologyManagerPolicy = in.TopologyManagerPolicy
    	out.TopologyManagerScope = in.TopologyManagerScope
    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/apis/config/helpers_test.go

    		"KubeletCgroups",
    		"MakeIPTablesUtilChains",
    		"RotateCertificates",
    		"ServerTLSBootstrap",
    		"StaticPodURL",
    		"StaticPodURLHeader[*][*]",
    		"MaxOpenFiles",
    		"MaxPods",
    		"MemoryManagerPolicy",
    		"MemorySwap.SwapBehavior",
    		"NodeLeaseDurationSeconds",
    		"NodeStatusMaxImages",
    		"NodeStatusUpdateFrequency.Duration",
    		"NodeStatusReportFrequency.Duration",
    		"OOMScoreAdj",
    		"PodCIDR",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/types.go

    	// CPU Manager reconciliation period.
    	// Requires the CPUManager feature gate to be enabled.
    	CPUManagerReconcilePeriod metav1.Duration
    	// MemoryManagerPolicy is the name of the policy to use.
    	// Requires the MemoryManager feature gate to be enabled.
    	MemoryManagerPolicy string
    	// TopologyManagerPolicy is the name of the policy to use.
    	TopologyManagerPolicy string
    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

    	logsapi.AddFlags(&c.Logging, fs)
    
    	// Memory Manager Flags
    	fs.StringVar(&c.MemoryManagerPolicy, "memory-manager-policy", c.MemoryManagerPolicy, "Memory Manager policy to use. Possible values: 'None', 'Static'.")
    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. cmd/kubelet/app/server.go

    				CPUManagerPolicyOptions:                 cpuManagerPolicyOptions,
    				CPUManagerReconcilePeriod:               s.CPUManagerReconcilePeriod.Duration,
    				ExperimentalMemoryManagerPolicy:         s.MemoryManagerPolicy,
    				ExperimentalMemoryManagerReservedMemory: s.ReservedMemory,
    				PodPidsLimit:                            s.PodPidsLimit,
    				EnforceCPULimits:                        s.CPUCFSQuota,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top