Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConfigPodSandbox (0.8 sec)

  1. pkg/kubelet/container/sync_result.go

    	// InitContainer action
    	InitContainer SyncAction = "InitContainer"
    	// CreatePodSandbox action
    	CreatePodSandbox SyncAction = "CreatePodSandbox"
    	// ConfigPodSandbox action
    	ConfigPodSandbox SyncAction = "ConfigPodSandbox"
    	// KillPodSandbox action
    	KillPodSandbox SyncAction = "KillPodSandbox"
    )
    
    // SyncResult is the result of sync action.
    type SyncResult struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 19 15:48:08 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	podIP := ""
    	if len(podIPs) != 0 {
    		podIP = podIPs[0]
    	}
    
    	// Get podSandboxConfig for containers to start.
    	configPodSandboxResult := kubecontainer.NewSyncResult(kubecontainer.ConfigPodSandbox, podSandboxID)
    	result.AddSyncResult(configPodSandboxResult)
    	podSandboxConfig, err := m.generatePodSandboxConfig(pod, podContainerChanges.Attempt)
    	if err != nil {
    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