Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetLogPath (0.33 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		tMessage, checkLogs := getTerminationMessage(status, annotatedInfo.TerminationMessagePath, fallbackToLogs)
    		if checkLogs {
    			tMessage = m.readLastStringFromContainerLogs(status.GetLogPath())
    		}
    		// Enrich the termination message written by the application is not empty
    		if len(tMessage) != 0 {
    			if len(cStatus.Message) != 0 {
    				cStatus.Message += ": "
    			}
    			cStatus.Message += tMessage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			State:       template.state,
    			Labels:      containerConfig.Labels,
    			Annotations: containerConfig.Annotations,
    			LogPath:     filepath.Join(sandboxConfig.GetLogDirectory(), containerConfig.GetLogPath()),
    		},
    		SandboxID: podSandboxID,
    	}
    }
    
    // makeFakeContainers creates a group of fake containers based on the container templates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top