Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 213 for resource_claim (0.32 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

      //
      // The template will be used to create a new ResourceClaim, which will
      // be bound to this pod. When this pod is deleted, the ResourceClaim
      // will also be deleted. The name of the ResourceClaim will be <pod
      // name>-<resource name>, where <resource name> is the
      // PodResourceClaim.Name. Pod validation will reject the pod if the
      // concatenated name is not valid for a ResourceClaim (e.g. too long).
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

      // which implies that the string must be a DNS_LABEL.
      optional string name = 1;
    
      // ResourceClaimName is the name of the ResourceClaim that was
      // generated for the Pod in the namespace of the Pod. If this is
      // unset, then generating a ResourceClaim was not necessary. The
      // pod.spec.resourceClaims entry can be ignored in this case.
      //
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	//
    	// Future extensions must not use "claims" or field number 3.
    	// Claims []ResourceClaim `json:"claims,omitempty" protobuf:"bytes,3,opt,name=claims"`
    }
    
    // ResourceClaim references one entry in PodSpec.ResourceClaims.
    type ResourceClaim struct {
    	// Name must match the name of one entry in pod.spec.resourceClaims of
    	// the Pod where this field is used. It makes that resource available
    	// inside a container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    			InitContainers: []core.Container{{Name: "ctr-init", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: "File", Resources: core.ResourceRequirements{Claims: []core.ResourceClaim{{Name: "my-claim"}}}}},
    			RestartPolicy:  core.RestartPolicyAlways,
    			DNSPolicy:      core.DNSClusterFirst,
    			ResourceClaims: []core.PodResourceClaim{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    			rbacv1helpers.NewRule(Read...).Groups(resourceGroup).Resources("resourceclasses").RuleOrDie(),
    			rbacv1helpers.NewRule(ReadUpdate...).Groups(resourceGroup).Resources("resourceclaims").RuleOrDie(),
    			rbacv1helpers.NewRule(ReadUpdate...).Groups(resourceGroup).Resources("resourceclaims/status").RuleOrDie(),
    			rbacv1helpers.NewRule(ReadWrite...).Groups(resourceGroup).Resources("podschedulingcontexts").RuleOrDie(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/types.go

    	CSIStorageCapacity      GVK = "storage.k8s.io/CSIStorageCapacity"
    	StorageClass            GVK = "storage.k8s.io/StorageClass"
    	PodSchedulingContext    GVK = "PodSchedulingContext"
    	ResourceClaim           GVK = "ResourceClaim"
    	ResourceClass           GVK = "ResourceClass"
    	ResourceClaimParameters GVK = "ResourceClaimParameters"
    	ResourceClassParameters GVK = "ResourceClassParameters"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

    as this pod.\n\nThe template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses.\n\nThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  8. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ResourceClaim)(nil), (*core.ResourceClaim)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ResourceClaim_To_core_ResourceClaim(a.(*v1.ResourceClaim), b.(*core.ResourceClaim), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.ResourceClaim)(nil), (*v1.ResourceClaim)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  9. pkg/api/testing/defaulting_test.go

    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: "RoleBindingList"}:                               {},
    		{Group: "resource.k8s.io", Version: "v1alpha2", Kind: "ResourceClaim"}:                                     {},
    		{Group: "resource.k8s.io", Version: "v1alpha2", Kind: "ResourceClaimList"}:                                 {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. pkg/scheduler/scheduler_test.go

    				},
    				{Resource: framework.PodSchedulingContext, ActionType: framework.All}: {
    					{PluginName: filterWithoutEnqueueExtensions, QueueingHintFn: defaultQueueingHintFn},
    				},
    				{Resource: framework.ResourceClaim, ActionType: framework.All}: {
    					{PluginName: filterWithoutEnqueueExtensions, QueueingHintFn: defaultQueueingHintFn},
    				},
    				{Resource: framework.ResourceClass, ActionType: framework.All}: {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top