OBJECT

KubernetesKindPodStatusEphemeralContainerStatusesStateTerminated

Details about a terminated container

link GraphQL Schema definition

  • type KubernetesKindPodStatusEphemeralContainerStatusesStateTerminated {
  • # Container's ID in the format 'docker://'
  • containerID: String
  • # Exit status from the last termination of the container
  • exitCode: Int
  • # Time at which the container last terminated
  • finishedAt: DateTime
  • # Message regarding the last termination of the container
  • message: String
  • # (brief) reason from the last termination of the container
  • reason: String
  • # Signal from the last termination of the container
  • signal: Int
  • # Time at which previous execution of the container started
  • startedAt: DateTime
  • }