Kazan v0.11.0 Kazan.Apis.Core.V1.ContainerStateTerminated View Source

ContainerStateTerminated is a terminated state of a container.

OpenAPI Definition: io.k8s.api.core.v1.ContainerStateTerminated

Properties

  • container_id :: String

    • Container’s ID in the format ‘docker://
  • exit_code :: Integer

    • Exit status from the last termination of the container
  • finished_at :: Kazan.Models.Apimachinery.Meta.V1.Time

    • Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
  • message :: String

    • Message regarding the last termination of the container
  • reason :: String

    • (brief) reason from the last termination of the container
  • signal :: Integer

    • Signal from the last termination of the container
  • started_at :: Kazan.Models.Apimachinery.Meta.V1.Time

    • Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Kazan.Apis.Core.V1.ContainerStateTerminated{
  container_id: String.t(),
  exit_code: integer(),
  finished_at: Kazan.Models.Apimachinery.Meta.V1.Time.t(),
  message: String.t(),
  reason: String.t(),
  signal: integer(),
  started_at: Kazan.Models.Apimachinery.Meta.V1.Time.t()
}