Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for buildContainerLogsPath (0.58 sec)

  1. pkg/kubelet/kuberuntime/helpers.go

    }
    
    // logPathDelimiter is the delimiter used in the log path.
    const logPathDelimiter = "_"
    
    // buildContainerLogsPath builds log path for container relative to pod logs directory.
    func buildContainerLogsPath(containerName string, restartCount int) string {
    	return filepath.Join(containerName, fmt.Sprintf("%d.log", restartCount))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	container := &pod.Spec.Containers[containerIndex]
    	podIP := ""
    	restartCount := 0
    	opts, _, _ := m.runtimeHelper.GenerateRunContainerOptions(ctx, pod, container, podIP, []string{podIP})
    	containerLogsPath := buildContainerLogsPath(container.Name, restartCount)
    	restartCountUint32 := uint32(restartCount)
    	envs := make([]*runtimeapi.KeyValue, len(opts.Envs))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	err = m.osInterface.MkdirAll(logDir, 0755)
    	if err != nil {
    		return nil, cleanupAction, fmt.Errorf("create container log directory for container %s failed: %v", container.Name, err)
    	}
    	containerLogsPath := buildContainerLogsPath(container.Name, restartCount)
    	restartCountUint32 := uint32(restartCount)
    	config := &runtimeapi.ContainerConfig{
    		Metadata: &runtimeapi.ContainerMetadata{
    			Name:    container.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top