Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for exit_node (0.24 sec)

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

    }
    
    func autoConvert_v1_ContainerStateTerminated_To_core_ContainerStateTerminated(in *v1.ContainerStateTerminated, out *core.ContainerStateTerminated, s conversion.Scope) error {
    	out.ExitCode = in.ExitCode
    	out.Signal = in.Signal
    	out.Reason = in.Reason
    	out.Message = in.Message
    	out.StartedAt = in.StartedAt
    	out.FinishedAt = in.FinishedAt
    	out.ContainerID = in.ContainerID
    	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)
  2. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // ContainerStateTerminated is a terminated state of a container.
    type ContainerStateTerminated struct {
    	// Exit status from the last termination of the container
    	ExitCode int32 `json:"exitCode" protobuf:"varint,1,opt,name=exitCode"`
    	// Signal from the last termination of the container
    	// +optional
    	Signal int32 `json:"signal,omitempty" protobuf:"varint,2,opt,name=signal"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    		// Skip any container that is not terminated
    		if oldStatus.State.Terminated == nil {
    			continue
    		}
    		// Skip any container that failed but is allowed to restart
    		if oldStatus.State.Terminated.ExitCode != 0 && restartPolicy == core.RestartPolicyOnFailure {
    			continue
    		}
    		for _, newStatus := range newStatuses {
    			if oldStatus.Name == newStatus.Name && newStatus.State.Terminated == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    type ContainerStateRunning struct {
    	// +optional
    	StartedAt metav1.Time
    }
    
    // ContainerStateTerminated represents the terminated state of a container
    type ContainerStateTerminated struct {
    	ExitCode int32
    	// +optional
    	Signal int32
    	// +optional
    	Reason string
    	// +optional
    	Message string
    	// +optional
    	StartedAt metav1.Time
    	// +optional
    	FinishedAt metav1.Time
    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

    	return map_ContainerStateRunning
    }
    
    var map_ContainerStateTerminated = map[string]string{
    	"":            "ContainerStateTerminated is a terminated state of a container.",
    	"exitCode":    "Exit status from the last termination of the container",
    	"signal":      "Signal from the last termination of the container",
    	"reason":      "(brief) reason from the last termination of the container",
    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

    }
    
    // ContainerStateTerminated is a terminated state of a container.
    message ContainerStateTerminated {
      // Exit status from the last termination of the container
      optional int32 exitCode = 1;
    
      // Signal from the last termination of the container
      // +optional
      optional int32 signal = 2;
    
      // (brief) reason from the last termination of the container
      // +optional
    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": "PodFailurePolicyOnExitCodesRequirement describes the requirement for handling a failed pod based on its container exit codes. In particular, it lookups the .state.terminated.exitCode for each app container and init container status, represented by the .status.containerStatuses and .status.initContainerStatuses fields in the Pod status, respectively. Containers completed with success (exit code 0) are excluded from the requirement...
    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