Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ExecAction (0.24 sec)

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

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ExecAction)(nil), (*core.ExecAction)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ExecAction_To_core_ExecAction(a.(*v1.ExecAction), b.(*core.ExecAction), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.ExecAction)(nil), (*v1.ExecAction)(nil), func(a, b interface{}, scope conversion.Scope) error {
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string component = 1;
    
      // Node name on which the event is generated.
      // +optional
      optional string host = 2;
    }
    
    // ExecAction describes a "run in container" action.
    message ExecAction {
      // Command is the command line to execute inside the container, the working directory for the
      // command  is root ('/') in the container's filesystem. The command is simply exec'd, it is
    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. pkg/apis/core/types.go

    	// +optional
    	Port intstr.IntOrString
    	// Optional: Host name to connect to, defaults to the pod IP.
    	// +optional
    	Host string
    }
    
    // ExecAction describes a "run in container" action.
    type ExecAction struct {
    	// Command is the command line to execute inside the container, the working directory for the
    	// command  is root ('/') in the container's filesystem.  The command is simply exec'd, it is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string component = 1;
    
      // Node name on which the event is generated.
      // +optional
      optional string host = 2;
    }
    
    // ExecAction describes a "run in container" action.
    message ExecAction {
      // Command is the command line to execute inside the container, the working directory for the
      // command  is root ('/') in the container's filesystem. The command is simply exec'd, it is
    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. staging/src/k8s.io/api/core/v1/types.go

    	// If this is not specified, the default behavior is defined by gRPC.
    	// +optional
    	// +default=""
    	Service *string `json:"service" protobuf:"bytes,2,opt,name=service"`
    }
    
    // ExecAction describes a "run in container" action.
    type ExecAction struct {
    	// Command is the command line to execute inside the container, the working directory for the
    	// command  is root ('/') in the container's filesystem. The command is simply exec'd, it is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.ExecAction": {
            "description": "ExecAction describes a \"run in container\" action.",
            "properties": {
              "command": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"host":      "Node name on which the event is generated.",
    }
    
    func (EventSource) SwaggerDoc() map[string]string {
    	return map_EventSource
    }
    
    var map_ExecAction = map[string]string{
    	"":        "ExecAction describes a \"run in container\" action.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    		allErrors = append(allErrors, field.NotSupported(fldPath, *restartPolicy, validValues))
    	}
    
    	return allErrors
    }
    
    type commonHandler struct {
    	Exec      *core.ExecAction
    	HTTPGet   *core.HTTPGetAction
    	TCPSocket *core.TCPSocketAction
    	GRPC      *core.GRPCAction
    	Sleep     *core.SleepAction
    }
    
    func handlerFromProbe(ph *core.ProbeHandler) commonHandler {
    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