Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for execIO (0.38 sec)

  1. pkg/apis/core/types.go

    // PodExecOptions is the query options to a Pod's remote exec call
    type PodExecOptions struct {
    	metav1.TypeMeta
    
    	// Stdin if true indicates that stdin is to be redirected for the exec call
    	Stdin bool
    
    	// Stdout if true indicates that stdout is to be redirected for the exec call
    	Stdout bool
    
    	// Stderr if true indicates that stderr is to be redirected for the exec call
    	Stderr bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

    // hook. One and only one of the fields, except TCPSocket must be specified.
    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;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_LifecycleHandler = map[string]string{
    	"":          "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)
  4. staging/src/k8s.io/api/core/v1/generated.proto

    // hook. One and only one of the fields, except TCPSocket must be specified.
    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;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.15.md

    - Kubelet metrics have been changed to buckets. 
      For example the exec/{podNamespace}/{podID}/{containerName} is now just exec. ([#87913](https://github.com/kubernetes/kubernetes/pull/87913), [@cheftako](https://github.com/cheftako)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    	numHandlers := 0
    	allErrors := field.ErrorList{}
    	if handler.Exec != nil {
    		if numHandlers > 0 {
    			allErrors = append(allErrors, field.Forbidden(fldPath.Child("exec"), "may not specify more than 1 handler type"))
    		} else {
    			numHandlers++
    			allErrors = append(allErrors, validateExecAction(handler.Exec, fldPath.Child("exec"))...)
    		}
    	}
    	if handler.HTTPGet != 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)
  7. prow/config/calico.yaml

              resources:
                requests:
                  cpu: 250m
              lifecycle:
                preStop:
                  exec:
                    command:
                    - /bin/calico-node
                    - -shutdown
              livenessProbe:
                exec:
                  command:
                  - /bin/calico-node
                  - -felix-live
                  - -bird-live
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  8. 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))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.24.md

    ### Bug or Regression
    
    - Fix an ephemeral port exhaustion bug caused by improper connection management that occurred when a large number of objects were handled by kubectl while exec auth was in use. ([#112337](https://github.com/kubernetes/kubernetes/pull/112337), [@enj](https://github.com/enj)) [SIG API Machinery and Auth]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.22.md

    This release also contains a number of bug fixes to the feature set. Aspiring plugin authors can look at [sample-exec-plugin](https://github.com/ankeesler/sample-exec-plugin) as a way to get started.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
Back to top