Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for generatePodSandboxConfig (0.2 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	result.AddSyncResult(configPodSandboxResult)
    	podSandboxConfig, err := m.generatePodSandboxConfig(pod, podContainerChanges.Attempt)
    	if err != nil {
    		message := fmt.Sprintf("GeneratePodSandboxConfig for pod %q failed: %v", format.Pod(pod), err)
    		klog.ErrorS(err, "GeneratePodSandboxConfig for pod failed", "pod", klog.KObj(pod))
    		configPodSandboxResult.Fail(kubecontainer.ErrConfigPodSandbox, message)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    func makeFakePodSandbox(t *testing.T, m *kubeGenericRuntimeManager, template sandboxTemplate) *apitest.FakePodSandbox {
    	config, err := m.generatePodSandboxConfig(template.pod, template.attempt)
    	assert.NoError(t, err, "generatePodSandboxConfig for sandbox template %+v", template)
    
    	podSandboxID := apitest.BuildSandboxName(config.Metadata)
    	podSandBoxStatus := &apitest.FakePodSandbox{
    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