Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Container ¶
type Container struct { Name string `json:"name"` Image string `json:"image"` RestartCount int32 `json:"restart_count"` Status string `json:"status"` // Message regarding the last termination of the container Message string `json:"message"` // reason from the last termination of the container Reason string `json:"reason"` // Time at which previous execution of the container started StartedAt int64 `json:"started_at,omitempty"` // Time at which the container last terminated FinishedAt int64 `json:"finished_at,omitempty"` }
type ContainerImage ¶
type Event ¶
type Event struct { Reason string `json:"reason,omitempty"` // A human-readable description of the status of this operation. Message string `json:"message,omitempty" protobuf:"bytes,4,opt,name=message"` // The time at which the event was first recorded. (Time of server receipt is in TypeMeta.) FirstSeen int64 `json:"first_seen,omitempty"` // The time at which the most recent occurrence of this event was recorded. LastSeen int64 `json:"last_seen,omitempty"` // The number of times this event has occurred. Count int32 `json:"count,omitempty"` // Type of this event (Normal, Warning), new types could be added in the future Type string `json:"type,omitempty"` }
type Job ¶
type Job struct { Name string `json:"name"` Age string `json:"age"` Labels map[string]string `json:"labels"` CreateTime int64 `json:"create_time,omitempty"` Active int32 `json:"active,omitempty"` Succeeded int32 `json:"succeeded,omitempty"` Failed int32 `json:"failed,omitempty"` Containers []v1.Container `json:"-"` }
Job ...
type Service ¶
type Service struct { Name string `json:"name"` Age string `json:"age"` Labels map[string]string `json:"labels"` Ports []ServicePort `json:"endpoints"` }
type ServicePort ¶
Click to show internal directories.
Click to hide internal directories.