Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 213 for resource_claim (0.39 sec)

  1. plugin/pkg/auth/authorizer/node/graph.go

    			e := newDestinationEdge(pvcVertex, podVertex, nodeVertex)
    			g.graph.SetEdge(e)
    			g.addEdgeToDestinationIndex_locked(e)
    		}
    	}
    
    	for _, podResourceClaim := range pod.Spec.ResourceClaims {
    		claimName, _, err := resourceclaim.Name(pod, &podResourceClaim)
    		// Do we have a valid claim name? If yes, add an edge that grants
    		// kubelet access to that claim. An error indicates that a claim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    							Instances: []resourceapi.NamedResourcesInstance{{Name: "X"}, {Name: "Y"}},
    						},
    					},
    				},
    			},
    
    			claims: claimList{
    				&resourceapi.ResourceClaim{
    					/* not allocated */
    				},
    				&resourceapi.ResourceClaim{
    					Status: resourceapi.ResourceClaimStatus{
    						DriverName: "driver-a",
    						Allocation: &resourceapi.AllocationResult{
    							ResourceHandles: []resourceapi.ResourceHandle{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/resource.k8s.io.v1alpha2.ResourceClaim.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 688 bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

            "description": "PodSchedulingContextStatus describes where resources for the Pod can be allocated.",
            "properties": {
              "resourceClaims": {
                "description": "ResourceClaims describes resource availability for each pod.spec.resourceClaim entry where the corresponding ResourceClaim uses \"WaitForFirstConsumer\" allocation mode.",
                "items": {
                  "allOf": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  5. pkg/scheduler/eventhandlers.go

    				}
    				handlers = append(handlers, handlerRegistration)
    			}
    		case framework.ResourceClaim:
    			if utilfeature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation) {
    				if handlerRegistration, err = informerFactory.Resource().V1alpha2().ResourceClaims().Informer().AddEventHandler(
    					buildEvtResHandler(at, framework.ResourceClaim, "ResourceClaim"),
    				); err != nil {
    					return err
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/resource.k8s.io.v1alpha2.PodSchedulingContext.yaml

        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      potentialNodes:
      - potentialNodesValue
      selectedNode: selectedNodeValue
    status:
      resourceClaims:
      - name: nameValue
        unsuitableNodes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. pkg/controller/resourceclaim/uid_cache.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package resourceclaim
    
    import (
    	"sync"
    
    	"github.com/golang/groupcache/lru"
    
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // uidCache is an LRU cache for uid.
    type uidCache struct {
    	mutex sync.Mutex
    	cache *lru.Cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:23:50 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/resource.k8s.io.v1alpha2.PodSchedulingContext.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/resource.k8s.io.v1alpha2.PodSchedulingContext.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/resource.k8s.io.v1alpha2.PodSchedulingContext.yaml

        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      potentialNodes:
      - potentialNodesValue
      selectedNode: selectedNodeValue
    status:
      resourceClaims:
      - name: nameValue
        unsuitableNodes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top