Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for resourceclaimtemplates (0.38 sec)

  1. pkg/printers/internalversion/printers.go

    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printResourceClaimTemplate(obj *resource.ResourceClaimTemplate, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

    - Api: validation of a `PodSpec` now rejects invalid `ResourceClaim` and `ResourceClaimTemplate` names. For a pod, the name generated for the `ResourceClaim` when using a template also must be valid. ([#116576](https://github.com/kubernetes/kubernetes/pull/116576), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    type ClaimSource struct {
    	// ResourceClaimName is the name of a ResourceClaim object in the same
    	// namespace as this pod.
    	ResourceClaimName *string
    
    	// ResourceClaimTemplateName is the name of a ResourceClaimTemplate
    	// object in the same namespace as this pod.
    	//
    	// The template will be used to create a new ResourceClaim, which will
    	// be bound to this pod. When this pod is deleted, the ResourceClaim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"resourceClaimName":         "ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

    message ClaimSource {
      // ResourceClaimName is the name of a ResourceClaim object in the same
      // namespace as this pod.
      optional string resourceClaimName = 1;
    
      // ResourceClaimTemplateName is the name of a ResourceClaimTemplate
      // object in the same namespace as this pod.
      //
      // The template will be used to create a new ResourceClaim, which will
      // be bound to this pod. When this pod is deleted, the ResourceClaim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// namespace as this pod.
    	ResourceClaimName *string `json:"resourceClaimName,omitempty" protobuf:"bytes,1,opt,name=resourceClaimName"`
    
    	// ResourceClaimTemplateName is the name of a ResourceClaimTemplate
    	// object in the same namespace as this pod.
    	//
    	// The template will be used to create a new ResourceClaim, which will
    	// be bound to this pod. When this pod is deleted, the ResourceClaim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - The names of ResourceClaims generated from ResourceClaimTemplate are now generated. The base name is still `<pod>-<claim name>`, but a random suffix will avoid name collisions. ([#117351](https://github.com/kubernetes/kubernetes/pull/117351), [@pohly](https://github.com/pohly)) [SIG API Machinery, Apps,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

    message ClaimSource {
      // ResourceClaimName is the name of a ResourceClaim object in the same
      // namespace as this pod.
      optional string resourceClaimName = 1;
    
      // ResourceClaimTemplateName is the name of a ResourceClaimTemplate
      // object in the same namespace as this pod.
      //
      // The template will be used to create a new ResourceClaim, which will
      // be bound to this pod. When this pod is deleted, the ResourceClaim
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    // name for a ResourceClaim is valid.
    var ValidateResourceClaimName = apimachineryvalidation.NameIsDNSSubdomain
    
    // ValidateResourceClaimTemplateName can be used to check whether the given
    // name for a ResourceClaimTemplate is valid.
    var ValidateResourceClaimTemplateName = apimachineryvalidation.NameIsDNSSubdomain
    
    // ValidateRuntimeClassName can be used to check whether the given RuntimeClass name is valid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    										Default: map[string]interface{}{},
    										Ref:     ref("k8s.io/api/resource/v1alpha2.ResourceClaimTemplate"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Required: []string{"items"},
    			},
    		},
    		Dependencies: []string{
    			"k8s.io/api/resource/v1alpha2.ResourceClaimTemplate", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top