Documentation ¶
Index ¶
- func GetContainerImages(podTemplate *api.PodSpec) []string
- func GetEventsForPod(client client.Interface, dsQuery *dataselect.DataSelectQuery, ...) (*common.EventList, error)
- type Container
- type EnvVar
- type Pod
- type PodCell
- type PodDetail
- type PodList
- func CreatePodList(pods []api.Pod, events []api.Event, dsQuery *dataselect.DataSelectQuery, ...) PodList
- func GetPodList(client k8sClient.Interface, heapsterClient client.HeapsterClient, ...) (*PodList, error)
- func GetPodListFromChannels(channels *common.ResourceChannels, dsQuery *dataselect.DataSelectQuery, ...) (*PodList, error)
- type PodStatus
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetContainerImages ¶
GetContainerImages returns container image strings from the given pod spec.
func GetEventsForPod ¶ added in v1.6.0
func GetEventsForPod(client client.Interface, dsQuery *dataselect.DataSelectQuery, namespace, podName string) (*common.EventList, error)
GetEventsForPod gets events that are associated with this pod.
Types ¶
type Container ¶ added in v1.1.1
type Container struct { // Name of the container. Name string `json:"name"` // Image URI of the container. Image string `json:"image"` // List of environment variables. Env []EnvVar `json:"env"` // Commands of the container Commands []string `json:"commands"` // Command arguments Args []string `json:"args"` }
Container represents a docker/rkt/etc. container that lives in a pod.
type EnvVar ¶ added in v1.1.1
type EnvVar struct { // Name of the variable. Name string `json:"name"` // Value of the variable. May be empty if value from is defined. Value string `json:"value"` // Defined for derived variables. If non-null, the value is get from the reference. // Note that this is an API struct. This is intentional, as EnvVarSources are plain struct // references. ValueFrom *v1.EnvVarSource `json:"valueFrom"` }
EnvVar represents an environment variable of a container.
type Pod ¶
type Pod struct { ObjectMeta common.ObjectMeta `json:"objectMeta"` TypeMeta common.TypeMeta `json:"typeMeta"` // More info on pod status PodStatus PodStatus `json:"podStatus"` // Count of containers restarts. RestartCount int32 `json:"restartCount"` // Pod metrics. Metrics *common.PodMetrics `json:"metrics"` // Pod warning events Warnings []common.Event `json:"warnings"` }
Pod is a presentation layer view of Kubernetes Pod resource. This means it is Pod plus additional augmented data we can get from other sources (like services that target it).
type PodCell ¶ added in v1.4.0
func (PodCell) GetProperty ¶ added in v1.4.0
func (self PodCell) GetProperty(name dataselect.PropertyName) dataselect.ComparableValue
func (PodCell) GetResourceSelector ¶ added in v1.4.0
func (self PodCell) GetResourceSelector() *metric.ResourceSelector
type PodDetail ¶
type PodDetail struct { ObjectMeta common.ObjectMeta `json:"objectMeta"` TypeMeta common.TypeMeta `json:"typeMeta"` // Status of the Pod. See Kubernetes API for reference. PodPhase v1.PodPhase `json:"podPhase"` // IP address of the Pod. PodIP string `json:"podIP"` // Name of the Node this Pod runs on. NodeName string `json:"nodeName"` // Count of containers restarts. RestartCount int32 `json:"restartCount"` // Reference to the Controller Controller owner.ResourceOwner `json:"controller"` // List of container of this pod. Containers []Container `json:"containers"` // Metrics collected for this resource Metrics []metric.Metric `json:"metrics"` // Conditions of this pod. Conditions []common.Condition `json:"conditions"` // Events is list of events associated with a pod. EventList common.EventList `json:"eventList"` }
PodDetail is a presentation layer view of Kubernetes PodDetail resource. This means it is PodDetail plus additional augmented data we can get from other sources (like services that target it).
func GetPodDetail ¶
func GetPodDetail(client kubernetes.Interface, heapsterClient client.HeapsterClient, namespace, name string) (*PodDetail, error)
GetPodDetail returns the details (PodDetail) of a named Pod from a particular namespace. TODO(maciaszczykm): Owner reference should be used instead of created by annotation.
type PodList ¶
type PodList struct { ListMeta common.ListMeta `json:"listMeta"` // Unordered list of Pods. Pods []Pod `json:"pods"` CumulativeMetrics []metric.Metric `json:"cumulativeMetrics"` }
PodList contains a list of Pods in the cluster.
func CreatePodList ¶
func CreatePodList(pods []api.Pod, events []api.Event, dsQuery *dataselect.DataSelectQuery, heapsterClient client.HeapsterClient) PodList
func GetPodList ¶
func GetPodList(client k8sClient.Interface, heapsterClient client.HeapsterClient, nsQuery *common.NamespaceQuery, dsQuery *dataselect.DataSelectQuery) (*PodList, error)
GetPodList returns a list of all Pods in the cluster.
func GetPodListFromChannels ¶
func GetPodListFromChannels(channels *common.ResourceChannels, dsQuery *dataselect.DataSelectQuery, heapsterClient client.HeapsterClient) (*PodList, error)
GetPodListFromChannels returns a list of all Pods in the cluster reading required resource list once from the channels.