Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ComponentConditionType (0.9 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/componentcondition.go

    )
    
    // ComponentConditionApplyConfiguration represents an declarative configuration of the ComponentCondition type for use
    // with apply.
    type ComponentConditionApplyConfiguration struct {
    	Type    *v1.ComponentConditionType `json:"type,omitempty"`
    	Status  *v1.ConditionStatus        `json:"status,omitempty"`
    	Message *string                    `json:"message,omitempty"`
    	Error   *string                    `json:"error,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	PortForwardRequestIDHeader = "requestID"
    )
    
    // ComponentConditionType defines type and constants for component health validation.
    type ComponentConditionType string
    
    // These are the valid conditions for the component.
    const (
    	ComponentHealthy ComponentConditionType = "Healthy"
    )
    
    // ComponentCondition represents the condition of a component
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    type ComponentConditionType string
    
    // These are the valid conditions for the component.
    const (
    	ComponentHealthy ComponentConditionType = "Healthy"
    )
    
    // Information about the condition of a component.
    type ComponentCondition struct {
    	// Type of condition for a component.
    	// Valid value: "Healthy"
    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/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_ComponentCondition_To_core_ComponentCondition(in *v1.ComponentCondition, out *core.ComponentCondition, s conversion.Scope) error {
    	out.Type = core.ComponentConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.Message = in.Message
    	out.Error = in.Error
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.pb.go

    			}
    			postIndex := iNdEx + intStringLen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Type = ComponentConditionType(dAtA[iNdEx:postIndex])
    			iNdEx = postIndex
    		case 2:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType)
    			}
    			var stringLen uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top