Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 147 for resourceClaimName (0.19 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podresourceclaimstatus.go

    // with apply.
    type PodResourceClaimStatusApplyConfiguration struct {
    	Name              *string `json:"name,omitempty"`
    	ResourceClaimName *string `json:"resourceClaimName,omitempty"`
    }
    
    // PodResourceClaimStatusApplyConfiguration constructs an declarative configuration of the PodResourceClaimStatus type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 12:23:48 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/manager_test.go

    					Namespace: "test-namespace",
    				},
    				Spec: v1.PodSpec{
    					ResourceClaims: []v1.PodResourceClaim{
    						{
    							Name:   "test-pod-claim-1",
    							Source: v1.ClaimSource{ResourceClaimName: &resourceClaimName},
    						},
    					},
    				},
    			},
    			claimInfo: &ClaimInfo{
    				annotations: map[string][]kubecontainer.Annotation{
    					"test-plugin": {
    						{
    							Name:  "test-annotation",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:29 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/claimsource.go

    package v1
    
    // ClaimSourceApplyConfiguration represents an declarative configuration of the ClaimSource type for use
    // with apply.
    type ClaimSourceApplyConfiguration struct {
    	ResourceClaimName         *string `json:"resourceClaimName,omitempty"`
    	ResourceClaimTemplateName *string `json:"resourceClaimTemplateName,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:22:42 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. pkg/controller/resourceclaim/controller_test.go

    		pod.Spec.NodeName = nodeName
    		pod.Status.ResourceClaimStatuses = append(pod.Status.ResourceClaimStatuses, v1.PodResourceClaimStatus{
    			Name:              pod.Spec.ResourceClaims[0].Name,
    			ResourceClaimName: &generatedTestClaim.Name,
    		})
    		return pod
    	}()
    
    	podSchedulingContext = resourcev1alpha2.PodSchedulingContext{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      testPodName,
    			Namespace: testNamespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/graph_populator.go

    	// cases this code here has to check.
    	for i := range statusA {
    		if statusA[i].Name != statusB[i].Name {
    			return false
    		}
    		claimNameA := statusA[i].ResourceClaimName
    		claimNameB := statusB[i].ResourceClaimName
    		if (claimNameA == nil) != (claimNameB == nil) {
    			return false
    		}
    		if claimNameA != nil && *claimNameA != *claimNameB {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodStatusResult.yaml

      phase: phaseValue
      podIP: podIPValue
      podIPs:
      - ip: ipValue
      qosClass: qosClassValue
      reason: reasonValue
      resize: resizeValue
      resourceClaimStatuses:
      - name: nameValue
        resourceClaimName: resourceClaimNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodStatusResult.json

                  "name": "nameValue"
                }
              ]
            }
          }
        ],
        "resize": "resizeValue",
        "resourceClaimStatuses": [
          {
            "name": "nameValue",
            "resourceClaimName": "resourceClaimNameValue"
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml

      phase: phaseValue
      podIP: podIPValue
      podIPs:
      - ip: ipValue
      qosClass: qosClassValue
      reason: reasonValue
      resize: resizeValue
      resourceClaimStatuses:
      - name: nameValue
        resourceClaimName: resourceClaimNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.json

              }
            ]
          }
        ],
        "resize": "resizeValue",
        "resourceClaimStatuses": [
          {
            "name": "nameValue",
            "resourceClaimName": "resourceClaimNameValue"
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.yaml

      phase: phaseValue
      podIP: podIPValue
      podIPs:
      - ip: ipValue
      qosClass: qosClassValue
      reason: reasonValue
      resize: resizeValue
      resourceClaimStatuses:
      - name: nameValue
        resourceClaimName: resourceClaimNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top