Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 269 for claim (0.04 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	for i, claim = range claimsToProvision {
    		logger.V(5).Info("Updating claims objects to trigger volume provisioning", "pod", klog.KObj(pod), "PVC", klog.KObj(claim))
    		newClaim, err := b.kubeClient.CoreV1().PersistentVolumeClaims(claim.Namespace).Update(ctx, claim, metav1.UpdateOptions{})
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // VendorClassParameters are the per-claim configuration parameters
      // from the resource class at the time that the claim was allocated.
      //
      // +optional
      optional .k8s.io.apimachinery.pkg.runtime.RawExtension vendorClassParameters = 1;
    
      // VendorClaimParameters are the per-claim configuration parameters
      // from the resource claim parameters at the time that the claim was
      // allocated.
      //
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    		}
    
    		switch {
    		case len(rule.Claim) > 0 && len(rule.Expression) > 0:
    			allErrs = append(allErrs, field.Invalid(fldPath, rule.Claim, "claim and expression can't both be set"))
    		case len(rule.Claim) == 0 && len(rule.Expression) == 0:
    			allErrs = append(allErrs, field.Required(fldPath, "claim or expression is required"))
    		case len(rule.Claim) > 0:
    			if len(rule.Message) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/index_test.go

    		volList.store.Add(pv)
    	}
    
    	scenarios := map[string]struct {
    		expectedMatch string
    		claim         *v1.PersistentVolumeClaim
    	}{
    		"successful-match-gce-10": {
    			expectedMatch: "gce-pd-10",
    			claim:         makePVC("8G", nil),
    		},
    		"successful-match-nfs-5": {
    			expectedMatch: "nfs-5",
    			claim: makePVC("5G", func(pvc *v1.PersistentVolumeClaim) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// VendorClassParameters are the per-claim configuration parameters
    	// from the resource class at the time that the claim was allocated.
    	//
    	// +optional
    	VendorClassParameters runtime.RawExtension `json:"vendorClassParameters,omitempty" protobuf:"bytes,1,opt,name=vendorClassParameters"`
    
    	// VendorClaimParameters are the per-claim configuration parameters
    	// from the resource claim parameters at the time that the claim was
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. pkg/apis/resource/types.go

    type StructuredResourceHandle struct {
    	// VendorClassParameters are the per-claim configuration parameters
    	// from the resource class at the time that the claim was allocated.
    	VendorClassParameters runtime.Object
    
    	// VendorClaimParameters are the per-claim configuration parameters
    	// from the resource claim parameters at the time that the claim was
    	// allocated.
    	VendorClaimParameters runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/claiminfo_test.go

    	className := "test-class"
    	driverName := "test-plugin"
    	claimUID := types.UID("claim-uid")
    	claimName := "test-claim"
    
    	for _, test := range []struct {
    		description    string
    		claim          *resourcev1alpha2.ResourceClaim
    		expectedResult *ClaimInfo
    	}{
    		{
    			description: "successfully created object",
    			claim: &resourcev1alpha2.ResourceClaim{
    				ObjectMeta: metav1.ObjectMeta{
    					UID:       claimUID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    	podWithTwoPVCs := st.MakePod().Name("pod-with-two-pvcs").Namespace(metav1.NamespaceDefault).PVC("claim-with-rwop-1").PVC("claim-with-rwop-2").Node("node-1").Obj()
    	podWithOneConflict := st.MakePod().Name("pod-with-one-conflict").Namespace(metav1.NamespaceDefault).PVC("claim-with-rwop-1").Node("node-1").Obj()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    }
    
    // PrefixedClaimOrExpression provides the configuration for a single prefixed claim or expression.
    type PrefixedClaimOrExpression struct {
    	Claim  string
    	Prefix *string
    
    	Expression string
    }
    
    // ClaimOrExpression provides the configuration for a single claim or expression.
    type ClaimOrExpression struct {
    	Claim      string
    	Expression string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/options/authentication.go

    	oidcCAFileFlag         = "oidc-ca-file"
    	oidcUsernameClaimFlag  = "oidc-username-claim"
    	oidcUsernamePrefixFlag = "oidc-username-prefix"
    	oidcGroupsClaimFlag    = "oidc-groups-claim"
    	oidcGroupsPrefixFlag   = "oidc-groups-prefix"
    	oidcSigningAlgsFlag    = "oidc-signing-algs"
    	oidcRequiredClaimFlag  = "oidc-required-claim"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top