Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EnsureImageExists (0.12 sec)

  1. pkg/kubelet/images/types.go

    // Implementations are expected to abstract the underlying runtimes.
    // Implementations are expected to be thread safe.
    type ImageManager interface {
    	// EnsureImageExists ensures that image specified in `container` exists.
    	EnsureImageExists(ctx context.Context, pod *v1.Pod, container *v1.Container, pullSecrets []v1.Secret, podSandboxConfig *runtimeapi.PodSandboxConfig, podRuntimeHandler string) (string, string, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. pkg/kubelet/images/image_manager.go

    	if ref != nil {
    		m.recorder.Event(ref, eventtype, event, msg)
    	} else {
    		logFn(fmt.Sprint(prefix, " ", msg))
    	}
    }
    
    // EnsureImageExists pulls the image for the specified pod and container, and returns
    // (imageRef, error message, error).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top