Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for terminationMessagePolicy (0.41 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// Defaults to File.
    	// Cannot be updated.
    	// +optional
    	TerminationMessagePolicy TerminationMessagePolicy `json:"terminationMessagePolicy,omitempty" protobuf:"bytes,20,opt,name=terminationMessagePolicy,casttype=TerminationMessagePolicy"`
    	// Image pull policy.
    	// One of Always, Never, IfNotPresent.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Lifecycle = (*core.Lifecycle)(unsafe.Pointer(in.Lifecycle))
    	out.TerminationMessagePath = in.TerminationMessagePath
    	out.TerminationMessagePolicy = core.TerminationMessagePolicy(in.TerminationMessagePolicy)
    	out.ImagePullPolicy = core.PullPolicy(in.ImagePullPolicy)
    	out.SecurityContext = (*core.SecurityContext)(unsafe.Pointer(in.SecurityContext))
    	out.Stdin = in.Stdin
    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. pkg/apis/core/types.go

    	// PreemptNever means that pod never preempts other pods with lower priority.
    	PreemptNever PreemptionPolicy = "Never"
    )
    
    // TerminationMessagePolicy describes how termination messages are retrieved from a container.
    type TerminationMessagePolicy string
    
    const (
    	// TerminationMessageReadFile is the default behavior and will set the container status message to
    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. pkg/apis/core/validation/validation.go

    	}
    
    	switch ctr.TerminationMessagePolicy {
    	case core.TerminationMessageReadFile, core.TerminationMessageFallbackToLogsOnError:
    	case "":
    		allErrs = append(allErrs, field.Required(path.Child("terminationMessagePolicy"), ""))
    	default:
    		supported := []core.TerminationMessagePolicy{
    			core.TerminationMessageReadFile,
    			core.TerminationMessageFallbackToLogsOnError,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.6.md

      - Container filesystem usage tracking disabled for device mapper due to excessive
        IOPS.
      - Ignore `.mount` cgroups, fixing disappearing stats.
    * A new field `terminationMessagePolicy` has been added to containers that allows
      a user to request FallbackToLogsOnError, which will read from the container's
      logs to populate the termination message if the user does not write to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // The log output is limited to 2048 bytes or 80 lines, whichever is smaller.
      // Defaults to File.
      // Cannot be updated.
      // +optional
      optional string terminationMessagePolicy = 20;
    
      // Image pull policy.
      // One of Always, Never, IfNotPresent.
      // Defaults to Always if :latest tag is specified, or IfNotPresent otherwise.
      // Cannot be updated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"terminationMessagePolicy": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of 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)
  8. CHANGELOG/CHANGELOG-1.17.md

    - If container fails because ContainerCannotRun, do not utilize the FallbackToLogsOnError TerminationMessagePolicy, as it masks more useful logs. ([#81280](https://github.com/kubernetes/kubernetes/pull/81280), [@yqwang-ms](https://github.com/yqwang-ms))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // The log output is limited to 2048 bytes or 80 lines, whichever is smaller.
      // Defaults to File.
      // Cannot be updated.
      // +optional
      optional string terminationMessagePolicy = 20;
    
      // Image pull policy.
      // One of Always, Never, IfNotPresent.
      // Defaults to Always if :latest tag is specified, or IfNotPresent otherwise.
      // Cannot be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "terminationMessagePolicy": {
    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