Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for joinTo (0.14 sec)

  1. pkg/kubelet/kubelet_test.go

    		{
    			name:               "Checkpoint with default checkpoint location",
    			containerName:      fakePod.Pod.Containers[0].Name,
    			checkpointLocation: "",
    			expectedStatus:     nil,
    			expectedLocation: filepath.Join(
    				kubelet.getCheckpointsDir(),
    				fmt.Sprintf(
    					"checkpoint-%s_%s-%s",
    					fakePod.Pod.Name,
    					fakePod.Pod.Namespace,
    					fakePod.Pod.Containers[0].Name,
    				),
    			),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			ImageRef:    imageRef,
    			CreatedAt:   template.createdAt,
    			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)
  3. pkg/kubelet/kubelet.go

    	if err != nil {
    		return err
    	}
    	if container == nil {
    		return fmt.Errorf("container %v not found", containerName)
    	}
    
    	options.Location = filepath.Join(
    		kl.getCheckpointsDir(),
    		fmt.Sprintf(
    			"checkpoint-%s-%s-%s.tar",
    			podFullName,
    			containerName,
    			time.Now().Format(time.RFC3339),
    		),
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top