Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for httpGet (0.17 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. common-protos/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: 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

    // 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)
  6. 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)
  7. 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)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.8.md

    * addon-resizer flapping behavior was removed. ([#46850](https://github.com/kubernetes/kubernetes/pull/46850), [@x13n](https://github.com/x13n))
    * Change default `httpGet` probe `User-Agent` to `kube-probe/<version major.minor>` if none specified, overriding the default Go `User-Agent`. ([#47729](https://github.com/kubernetes/kubernetes/pull/47729), [@paultyng](https://github.com/paultyng))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.26.md

      level, or following any other model you implement.' ([#111023](https://github.com/kubernetes/kubernetes/pull/111023), [@pohly](https://github.com/pohly))
    - 'Container `preStop` and `postStart` lifecycle handlers using `httpGet` now
      honor the specified `scheme` and `headers` fields. This enables setting custom
      headers and changing the scheme to `HTTPS`, consistent with container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
Back to top