Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ContainerChanged (0.54 sec)

  1. pkg/kubelet/pleg/pleg.go

    	// the state of the pod cannot be captured by any single event above.
    	PodSync PodLifeCycleEventType = "PodSync"
    	// ContainerChanged - event type when the new state of container is unknown.
    	ContainerChanged PodLifeCycleEventType = "ContainerChanged"
    )
    
    // PodLifecycleEvent is an event that reflects the change of the pod state.
    type PodLifecycleEvent struct {
    	// The pod ID.
    	ID types.UID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. pkg/kubelet/pleg/generic.go

    	case plegContainerExited:
    		return []*PodLifecycleEvent{{ID: podID, Type: ContainerDied, Data: cid}}
    	case plegContainerUnknown:
    		return []*PodLifecycleEvent{{ID: podID, Type: ContainerChanged, Data: cid}}
    	case plegContainerNonExistent:
    		switch oldState {
    		case plegContainerExited:
    			// We already reported that the container died before.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		p.KillPod, p.CreateSandbox, p.UpdatePodResources, p.Attempt, p.InitContainersToStart, p.ContainersToStart, p.EphemeralContainersToStart, p.ContainersToUpdate, p.ContainersToKill)
    }
    
    // containerChanged will determine whether the container has changed based on the fields that will affect the running of the container.
    // Currently, there are only `image` and `name` fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top