Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ReadinessGates (0.62 sec)

  1. pkg/apis/core/validation/validation.go

    	MaxDNSSearchPaths = 32
    	// Max number of characters in the search path.
    	MaxDNSSearchListChars = 2048
    )
    
    func validateReadinessGates(readinessGates []core.PodReadinessGate, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	for i, value := range readinessGates {
    		allErrs = append(allErrs, ValidateQualifiedName(string(value.ConditionType), fldPath.Index(i).Child("conditionType"))...)
    	}
    	return allErrs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	out.PriorityClassName = in.PriorityClassName
    	out.Priority = (*int32)(unsafe.Pointer(in.Priority))
    	out.DNSConfig = (*core.PodDNSConfig)(unsafe.Pointer(in.DNSConfig))
    	out.ReadinessGates = *(*[]core.PodReadinessGate)(unsafe.Pointer(&in.ReadinessGates))
    	out.RuntimeClassName = (*string)(unsafe.Pointer(in.RuntimeClassName))
    	out.EnableServiceLinks = (*bool)(unsafe.Pointer(in.EnableServiceLinks))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates
    	// +optional
    	// +listType=atomic
    	ReadinessGates []PodReadinessGate `json:"readinessGates,omitempty" protobuf:"bytes,28,opt,name=readinessGates"`
    	// RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used
    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. CHANGELOG/CHANGELOG-1.27.md

    - The Pod API field `.spec.schedulingGates[*].name` now requires qualified names (like `example.com/mygate`), matching validation for names of `.spec.readinessGates[*].name`. Any uses of the alpha scheduling gate feature prior to 1.27 that do not match that validation must be renamed or deleted before upgrading to 1.27. ([#115821](https://github.com/kubernetes/kubernetes/pull/115821), [@lianghao208](http...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.14.md

    * The `spec.readinessGates` field is now dropped during creation of `Pod` objects unless the `PodReadinessGates` feature gate is enabled. ([#72695](https://github.com/kubernetes/kubernetes/pull/72695), [@rajathagasthya](https://github.com/rajathagasthya))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // all conditions specified in the readiness gates have status equal to "True"
      // More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates
      // +optional
      repeated PodReadinessGate readinessGates = 28;
    
      // RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used
      // to run this pod.  If no RuntimeClass resource matches the named class, the pod will not be run.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// all conditions specified in the readiness gates have status equal to "True"
    	// More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates
    	// +optional
    	ReadinessGates []PodReadinessGate
    	// RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used
    	// to run this pod.  If no RuntimeClass resource matches the named class, the pod will not be run.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"dnsConfig":                     "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates
      // +optional
      // +listType=atomic
      repeated PodReadinessGate readinessGates = 28;
    
      // RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used
      // to run this pod.  If no RuntimeClass resource matches the named class, the pod will not be run.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "readinessGates": {
    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