Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for claim (0.11 sec)

  1. pkg/apis/core/types.go

    	// status field of the claim.
    	// +optional
    	Resources VolumeResourceRequirements
    	// VolumeName is the binding reference to the PersistentVolume backing this
    	// claim. When set to non-empty value Selector is not evaluated
    	// +optional
    	VolumeName string
    	// Name of the StorageClass required by the claim.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"volumeName":                "volumeName is the binding reference to the PersistentVolume backing this claim.",
    	"storageClassName":          "storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// Claims got added by accident when volumes shared the ResourceRequirements struct
    	// with containers. Stripping the field got added in 1.27 and was backported to 1.26.
    	// Starting with Kubernetes 1.28, this field is not part of the volume API anymore.
    	//
    	// Future extensions must not use "claims" or field number 3.
    	// Claims []ResourceClaim `json:"claims,omitempty" protobuf:"bytes,3,opt,name=claims"`
    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.go

    // handled by validatePodResourceClaims.
    func gatherPodResourceClaimNames(claims []core.PodResourceClaim) sets.Set[string] {
    	podClaimNames := sets.Set[string]{}
    	for _, claim := range claims {
    		if claim.Name != "" {
    			podClaimNames.Insert(claim.Name)
    		}
    	}
    	return podClaimNames
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1
      // +optional
      optional string storageClassName = 5;
    
      // volumeMode defines what type of volume is required by the claim.
      // Value of Filesystem is implied when not included in claim spec.
      // +optional
      optional string volumeMode = 6;
    
      // dataSource field can be used to specify either:
    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. CHANGELOG/CHANGELOG-1.30.md

    - When configuring a JWT authenticator:
      
      If `username.expression` used 'claims.email', then 'claims.email_verified' must have been used in `username.expression` or `extra[*].valueExpression` or `claimValidationRules[*].expression`. An example claim validation rule expression that matches the validation automatically applied when `username.claim` is set to 'email' is 'claims.?email_verified.orValue(true)'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Dynamic resource allocation: when a claim uses "wait for first consumer" allocation (the default), then it will now get deallocated after it was used by a pod. That ensures that the next pod isn't affected by previous scheduling decision and that resources are not kept allocated unless really needed. If keeping a claim allocated is desired, use "immediate allocation." ([#118936](https://github.com/kubernetes/kubernetes/pull/118936),...
    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. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.",
                "type": "string"
              },
              "volumeName": {
                "description": "volumeName is the binding reference to the PersistentVolume backing this claim.",
                "type": "string"
              }
            },
            "type": "object"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - `kube-apiserver` added:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

      ResourceClass, PodScheduling) must be deleted. The changes are internal, so
      YAML files which create pods and resource claims don't need changes except for
      the newer `apiVersion`. ([#116299](https://github.com/kubernetes/kubernetes/pull/116299), [@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)
Back to top