Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for resourceclaimtemplates (0.45 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    func (m *ResourceClaimTemplate) Reset()      { *m = ResourceClaimTemplate{} }
    func (*ResourceClaimTemplate) ProtoMessage() {}
    func (*ResourceClaimTemplate) Descriptor() ([]byte, []int) {
    	return fileDescriptor_4312f5b44a31ec02, []int{26}
    }
    func (m *ResourceClaimTemplate) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K 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. api/openapi-spec/v3/apis__batch__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top