Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for containerRuntime (0.6 sec)

  1. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    			policy: testCase.policy,
    			state: &mockState{
    				assignments:   state.ContainerCPUAssignments{},
    				defaultCPUSet: cpuset.New(1, 2, 3, 4),
    			},
    			lastUpdateState: state.NewMemoryState(),
    			containerRuntime: mockRuntimeService{
    				err: testCase.updateErr,
    			},
    			containerMap:      containermap.NewContainerMap(),
    			podStatusProvider: mockPodStatusProvider{},
    			sourcesReady:      &sourcesReadyStub{},
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	if err != nil {
    		return nil, err
    	}
    	klet.containerGC = containerGC
    	klet.containerDeletor = newPodContainerDeletor(klet.containerRuntime, max(containerGCPolicy.MaxPerPodContainer, minDeadContainerInPod))
    
    	// setup imageManager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. pkg/kubelet/runonce_test.go

    		mirrorPodClient:  podtest.NewFakeMirrorClient(),
    		podManager:       podManager,
    		podWorkers:       &fakePodWorkers{},
    		os:               &containertest.FakeOS{},
    		containerRuntime: fakeRuntime,
    		reasonCache:      NewReasonCache(),
    		clock:            clock.RealClock{},
    		kubeClient:       &fake.Clientset{},
    		hostname:         testKubeletHostname,
    		nodeName:         testKubeletHostname,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator.go

    	"k8s.io/client-go/tools/remotecommand"
    	"k8s.io/client-go/util/exec"
    )
    
    // StreamTranslatorHandler is a handler which translates WebSocket stream data
    // to SPDY to proxy to kubelet (and ContainerRuntime).
    type StreamTranslatorHandler struct {
    	// Location is the location of the upstream proxy. It is used as the location to Dial on the upstream server
    	// for upgrade requests.
    	Location *url.URL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. cluster/gce/windows/configure.ps1

        InstallAndStart-OpenSsh
        StartProcess-WriteSshKeys
      }
    
      Create-Directories
      Download-HelperScripts
    
      DownloadAndInstall-Crictl
      Configure-Crictl
      Setup-ContainerRuntime
      DownloadAndInstall-KubernetesBinaries
      DownloadAndInstall-NodeProblemDetector
      DownloadAndInstall-CSIProxyBinaries
      DownloadAndInstall-AuthProviderGcpBinary
      Start-CSIProxy
      Create-NodePki
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/container_manager.go

    }
    
    type NodeConfig struct {
    	NodeName              types.NodeName
    	RuntimeCgroupsName    string
    	SystemCgroupsName     string
    	KubeletCgroupsName    string
    	KubeletOOMScoreAdj    int32
    	ContainerRuntime      string
    	CgroupsPerQOS         bool
    	CgroupRoot            string
    	CgroupDriver          string
    	KubeletRootDir        string
    	ProtectKernelDefaults bool
    	NodeAllocatableConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    		t.Run(testCase.description, func(t *testing.T) {
    			mgr := &manager{
    				policy:       returnPolicyByName(testCase),
    				state:        state.NewMemoryState(),
    				containerMap: containermap.NewContainerMap(),
    				containerRuntime: mockRuntimeService{
    					err: nil,
    				},
    				activePods:        func() []*v1.Pod { return nil },
    				podStatusProvider: mockPodStatusProvider{},
    			}
    			mgr.sourcesReady = &sourcesReadyStub{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters.go

    func VersionInfo(versionInfoFunc func() (*cadvisorapiv1.VersionInfo, error), // typically Kubelet.cadvisor.VersionInfo
    	runtimeTypeFunc func() string, // typically Kubelet.containerRuntime.Type
    	runtimeVersionFunc func(ctx context.Context) (kubecontainer.Version, error), // typically Kubelet.containerRuntime.Version
    ) Setter {
    	return func(ctx context.Context, node *v1.Node) error {
    		verinfo, err := versionInfoFunc()
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/constants/constants.go

    	UpgradeManifestsTimeout = 5 * time.Minute
    
    	// PullImageRetry specifies how many times ContainerRuntime retries when pulling image failed
    	PullImageRetry = 5
    	// RemoveContainerRetry specifies how many times ContainerRuntime retries when removing container failed
    	RemoveContainerRetry = 5
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status.go

    			kl.containerManager.GetDevicePluginResourceCapacity, kl.containerManager.GetNodeAllocatableReservation, kl.recordEvent, kl.supportLocalStorageCapacityIsolation()),
    		nodestatus.VersionInfo(kl.cadvisor.VersionInfo, kl.containerRuntime.Type, kl.containerRuntime.Version),
    		nodestatus.DaemonEndpoints(kl.daemonEndpoints),
    		nodestatus.Images(kl.nodeStatusMaxImages, kl.imageManager.GetImageList),
    		nodestatus.GoRuntime(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top