Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for terminationMessagePath (0.36 sec)

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

    	// Defaults to /dev/termination-log.
    	// Cannot be updated.
    	// +optional
    	TerminationMessagePath string `json:"terminationMessagePath,omitempty" protobuf:"bytes,13,opt,name=terminationMessagePath"`
    	// 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.
    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.StartupProbe = (*core.Probe)(unsafe.Pointer(in.StartupProbe))
    	out.Lifecycle = (*core.Lifecycle)(unsafe.Pointer(in.Lifecycle))
    	out.TerminationMessagePath = in.TerminationMessagePath
    	out.TerminationMessagePolicy = core.TerminationMessagePolicy(in.TerminationMessagePolicy)
    	out.ImagePullPolicy = core.PullPolicy(in.ImagePullPolicy)
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // all containers will be limited to 12kb.
      // Defaults to /dev/termination-log.
      // Cannot be updated.
      // +optional
      optional string terminationMessagePath = 13;
    
      // 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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// the contents of the container's terminationMessagePath when the container exits.
    	TerminationMessageReadFile TerminationMessagePolicy = "File"
    	// TerminationMessageFallbackToLogsOnError will read the most recent contents of the container logs
    	// for the container status message when the container exits with an error and the
    	// terminationMessagePath has no contents.
    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

    	"lifecycle":                "Actions that the management system should take in response to container lifecycle events. Cannot be updated.",
    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

      // all containers will be limited to 12kb.
      // Defaults to /dev/termination-log.
      // Cannot be updated.
      // +optional
      optional string terminationMessagePath = 13;
    
      // 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.
    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

                "type": "boolean"
              },
              "terminationMessagePath": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.17.md

    - Fixes kube-proxy bug accessing self nodeip:port on windows ([#83027](https://github.com/kubernetes/kubernetes/pull/83027), [@liggitt](https://github.com/liggitt))
    - When using Containerd on Windows, the ``TerminationMessagePath`` file will now be mounted in the Windows Pod. ([#83057](https://github.com/kubernetes/kubernetes/pull/83057), [@bclau](https://github.com/bclau))
    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. pkg/apis/core/validation/validation.go

    	"VolumeDevices":            true,
    	"LivenessProbe":            false,
    	"ReadinessProbe":           false,
    	"StartupProbe":             false,
    	"Lifecycle":                false,
    	"TerminationMessagePath":   true,
    	"TerminationMessagePolicy": true,
    	"ImagePullPolicy":          true,
    	"SecurityContext":          true,
    	"Stdin":                    true,
    	"StdinOnce":                true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.9.md

    * Removing `--prom-push-gateway` flag from e2e tests ([#52485](https://github.com/kubernetes/kubernetes/pull/52485), [@nielsole](https://github.com/nielsole))
    * If a container does not create a file at the `terminationMessagePath`, no message should be output about being unable to find the file. ([#52567](https://github.com/kubernetes/kubernetes/pull/52567), [@smarterclayton](https://github.com/smarterclayton))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
Back to top