Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for conditionType (0.48 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_PodReadinessGate_To_core_PodReadinessGate(in *v1.PodReadinessGate, out *core.PodReadinessGate, s conversion.Scope) error {
    	out.ConditionType = core.PodConditionType(in.ConditionType)
    	return nil
    }
    
    // Convert_v1_PodReadinessGate_To_core_PodReadinessGate is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    )
    
    // PodReadinessGate contains the reference to a pod condition
    type PodReadinessGate struct {
    	// ConditionType refers to a condition in the pod's condition list with matching type.
    	ConditionType PodConditionType `json:"conditionType" protobuf:"bytes,1,opt,name=conditionType,casttype=PodConditionType"`
    }
    
    // PodSpec is a description of a pod.
    type PodSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - Fixed node lifecycle controller panic when conditionType ready is been patch `nil` by mistake. ([#122874](https://github.com/kubernetes/kubernetes/pull/122874), [@fusida](https://github.com/fusida))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string path = 1;
    }
    
    // PodReadinessGate contains the reference to a pod condition
    message PodReadinessGate {
      // ConditionType refers to a condition in the pod's condition list with matching type.
      optional string conditionType = 1;
    }
    
    // PodResourceClaim references exactly one ResourceClaim through a ClaimSource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	TolerationOpEqual  TolerationOperator = "Equal"
    )
    
    // PodReadinessGate contains the reference to a pod condition
    type PodReadinessGate struct {
    	// ConditionType refers to a condition in the pod's condition list with matching type.
    	ConditionType PodConditionType
    }
    
    // PodSpec is a description of a pod
    type PodSpec struct {
    	Volumes []Volume
    	// List of initialization containers belonging to the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_PodProxyOptions
    }
    
    var map_PodReadinessGate = map[string]string{
    	"":              "PodReadinessGate contains the reference to a pod condition",
    	"conditionType": "ConditionType refers to a condition in the pod's condition list with matching type.",
    }
    
    func (PodReadinessGate) SwaggerDoc() map[string]string {
    	return map_PodReadinessGate
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "conditionType": {
                "default": "",
                "description": "ConditionType refers to a condition in the pod's condition list with matching type.",
                "type": "string"
              }
            },
            "required": [
              "conditionType"
            ],
            "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)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string path = 1;
    }
    
    // PodReadinessGate contains the reference to a pod condition
    message PodReadinessGate {
      // ConditionType refers to a condition in the pod's condition list with matching type.
      optional string conditionType = 1;
    }
    
    // PodResourceClaim references exactly one ResourceClaim through a ClaimSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	for i, value := range readinessGates {
    		allErrs = append(allErrs, ValidateQualifiedName(string(value.ConditionType), fldPath.Index(i).Child("conditionType"))...)
    	}
    	return allErrs
    }
    
    func validateSchedulingGates(schedulingGates []core.PodSchedulingGate, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top