Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for podClaims (0.13 sec)

  1. pkg/kubelet/cm/dra/manager.go

    		if err := m.unprepareResources(podClaims.uid, podClaims.namespace, podClaims.claimNames); err != nil {
    			klog.ErrorS(err, "Unpreparing pod resources in reconcile loop", "podUID", podClaims.uid)
    		}
    	}
    }
    
    // PrepareResources attempts to prepare all of the required resource
    // plugin resources for the input container, issue NodePrepareResources rpc requests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pkg/controller/resourceclaim/controller_test.go

    			ResourceClaimTemplateName: &templateName,
    		},
    	}
    }
    
    func makePod(name, namespace string, uid types.UID, podClaims ...v1.PodResourceClaim) *v1.Pod {
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: name, Namespace: namespace, UID: uid},
    		Spec: v1.PodSpec{
    			ResourceClaims: podClaims,
    		},
    	}
    
    	return pod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. pkg/controller/resourceclaim/controller.go

    func (ec *Controller) handleClaim(ctx context.Context, pod *v1.Pod, podClaim v1.PodResourceClaim, newPodClaims *map[string]string) error {
    	logger := klog.LoggerWithValues(klog.FromContext(ctx), "podClaim", podClaim.Name)
    	ctx = klog.NewContext(ctx, logger)
    	logger.V(5).Info("checking", "podClaim", podClaim.Name)
    
    	// resourceclaim.Name checks for the situation that the client doesn't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top