Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for CONTAINERID (0.15 sec)

  1. pkg/kubelet/lifecycle/handlers.go

    	}
    }
    
    func (hr *handlerRunner) Run(ctx context.Context, containerID kubecontainer.ContainerID, pod *v1.Pod, container *v1.Container, handler *v1.LifecycleHandler) (string, error) {
    	switch {
    	case handler.Exec != nil:
    		var msg string
    		// TODO(tallclair): Pass a proper timeout value.
    		output, err := hr.commandRunner.RunInContainer(ctx, containerID, handler.Exec.Command, 0)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_unsupported.go

    func (m *kubeGenericRuntimeManager) applyPlatformSpecificContainerConfig(config *runtimeapi.ContainerConfig, container *v1.Container, pod *v1.Pod, uid *int64, username string, nsTarget *kubecontainer.ContainerID) error {
    	return nil
    }
    
    // generateContainerResources generates platform specific container resources config for runtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. pkg/kubelet/pleg/evented_test.go

    		podStatuses[i] = &kubecontainer.PodStatus{
    			ID: types.UID(id),
    			SandboxStatuses: []*v1.PodSandboxStatus{
    				{Id: id},
    			},
    			ContainerStatuses: []*kubecontainer.Status{
    				{ID: kubecontainer.ContainerID{ID: id}, State: kubecontainer.ContainerStateRunning},
    			},
    		}
    
    		pleg.updateRunningPodMetric(podStatuses[i])
    		pleg.cache.Set(podStatuses[i].ID, podStatuses[i], nil, time.Now())
    
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 01 07:45:05 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. pkg/kubelet/prober/scale_test.go

    						LivenessProbe: newProbe(handler),
    					})
    					pod.Status.ContainerStatuses = append(pod.Status.ContainerStatuses, v1.ContainerStatus{
    						Name:        fmt.Sprintf("container%d", j),
    						ContainerID: fmt.Sprintf("pod%d://container%d", i, j),
    						State: v1.ContainerState{
    							Running: &v1.ContainerStateRunning{
    								StartedAt: metav1.Now(),
    							},
    						},
    						Started: utilpointer.Bool(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. cni/pkg/plugin/cnieventclient_test.go

    	eventC := CNIEventClient{
    		client: c,
    		url:    address + constants.CNIAddEventPath,
    	}
    	return eventC
    }
    
    var fakeCmdArgs = &skel.CmdArgs{
    	Netns:       "someNetNS",
    	IfName:      "ethBro",
    	ContainerID: "bbb-eee-www",
    }
    
    var (
    	fakeIP                 = net.ParseIP("99.9.9.9")
    	fakeGW                 = net.ParseIP("88.9.9.9")
    	fakeIDX                = 0
    	fakePrevResultIPConfig = cniv1.IPConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    		- 'crictl --runtime-endpoint {{ .Socket }} ps -a | grep kube | grep -v pause'
    		Once you have found the failing container, you can inspect its logs with:
    		- 'crictl --runtime-endpoint {{ .Socket }} logs CONTAINERID'
    	`)))
    )
    
    // NewWaitControlPlanePhase is a hidden phase that runs after the control-plane and etcd phases
    func NewWaitControlPlanePhase() workflow.Phase {
    	phase := workflow.Phase{
    		Name:  "wait-control-plane",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    func (m *kubeGenericRuntimeManager) applyPlatformSpecificContainerConfig(config *runtimeapi.ContainerConfig, container *v1.Container, pod *v1.Pod, uid *int64, username string, _ *kubecontainer.ContainerID) error {
    	windowsConfig, err := m.generateWindowsContainerConfig(container, pod, uid, username)
    	if err != nil {
    		return err
    	}
    	config.Windows = windowsConfig
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top