Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for httpGet (0.15 sec)

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

    		}
    	}
    	if handler.HTTPGet != nil {
    		if numHandlers > 0 {
    			allErrors = append(allErrors, field.Forbidden(fldPath.Child("httpGet"), "may not specify more than 1 handler type"))
    		} else {
    			numHandlers++
    			allErrors = append(allErrors, validateHTTPGetAction(handler.HTTPGet, fldPath.Child("httpGet"))...)
    		}
    	}
    	if handler.TCPSocket != nil {
    		if numHandlers > 0 {
    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

    func autoConvert_v1_LifecycleHandler_To_core_LifecycleHandler(in *v1.LifecycleHandler, out *core.LifecycleHandler, s conversion.Scope) error {
    	out.Exec = (*core.ExecAction)(unsafe.Pointer(in.Exec))
    	out.HTTPGet = (*core.HTTPGetAction)(unsafe.Pointer(in.HTTPGet))
    	out.TCPSocket = (*core.TCPSocketAction)(unsafe.Pointer(in.TCPSocket))
    	out.Sleep = (*core.SleepAction)(unsafe.Pointer(in.Sleep))
    	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)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// Exec specifies the action to take.
    	// +optional
    	Exec *ExecAction `json:"exec,omitempty" protobuf:"bytes,1,opt,name=exec"`
    	// HTTPGet specifies the http request to perform.
    	// +optional
    	HTTPGet *HTTPGetAction `json:"httpGet,omitempty" protobuf:"bytes,2,opt,name=httpGet"`
    	// TCPSocket specifies an action involving a TCP port.
    	// +optional
    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/types.go

    // One and only one of the fields must be specified.
    type ProbeHandler struct {
    	// Exec specifies the action to take.
    	// +optional
    	Exec *ExecAction
    	// HTTPGet specifies the http request to perform.
    	// +optional
    	HTTPGet *HTTPGetAction
    	// TCPSocket specifies an action involving a TCP port.
    	// +optional
    	TCPSocket *TCPSocketAction
    
    	// GRPC specifies an action involving a GRPC port.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":          "LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.",
    	"exec":      "Exec specifies the action to take.",
    	"httpGet":   "HTTPGet specifies the http request to perform.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    message LifecycleHandler {
      // Exec specifies the action to take.
      // +optional
      optional ExecAction exec = 1;
    
      // HTTPGet specifies the http request to perform.
      // +optional
      optional HTTPGetAction httpGet = 2;
    
      // Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept
      // for the backward compatibility. There are no validation of this field and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                ],
                "description": "Exec specifies the action to take."
              },
              "httpGet": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPGetAction"
                  }
                ],
                "description": "HTTPGet specifies the http request to perform."
              },
              "sleep": {
                "allOf": [
    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