Documentation ¶
Index ¶
- func FromCells(cells []dataselect.DataCell) []apps.ReplicaSet
- func GetReplicaSetPods(client k8sClient.Interface, metricClient metricapi.MetricClient, ...) (*pod.PodList, error)
- func GetReplicaSetServices(client client.Interface, dsQuery *dataselect.DataSelectQuery, ...) (*service.ServiceList, error)
- func ToCells(std []apps.ReplicaSet) []dataselect.DataCell
- type ReplicaSet
- type ReplicaSetCell
- type ReplicaSetDetail
- type ReplicaSetList
- func GetReplicaSetList(client client.Interface, nsQuery *common.NamespaceQuery, ...) (*ReplicaSetList, error)
- func GetReplicaSetListFromChannels(channels *common.ResourceChannels, dsQuery *dataselect.DataSelectQuery, ...) (*ReplicaSetList, error)
- func ToReplicaSetList(replicaSets []apps.ReplicaSet, pods []v1.Pod, events []v1.Event, ...) *ReplicaSetList
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FromCells ¶ added in v1.5.0
func FromCells(cells []dataselect.DataCell) []apps.ReplicaSet
func GetReplicaSetPods ¶ added in v1.1.1
func GetReplicaSetPods(client k8sClient.Interface, metricClient metricapi.MetricClient, dsQuery *dataselect.DataSelectQuery, petSetName, namespace string) (*pod.PodList, error)
GetReplicaSetPods return list of pods targeting replica set.
func GetReplicaSetServices ¶ added in v1.1.1
func GetReplicaSetServices(client client.Interface, dsQuery *dataselect.DataSelectQuery, namespace, name string) (*service.ServiceList, error)
GetReplicaSetServices returns list of services that are related to replica set targeted by given name.
func ToCells ¶ added in v1.5.0
func ToCells(std []apps.ReplicaSet) []dataselect.DataCell
Types ¶
type ReplicaSet ¶
type ReplicaSet struct { ObjectMeta api.ObjectMeta `json:"objectMeta"` TypeMeta api.TypeMeta `json:"typeMeta"` // Aggregate information about pods belonging to this Replica Set. Pods common.PodInfo `json:"pods"` // Container images of the Replica Set. ContainerImages []string `json:"containerImages"` // Init Container images of the Replica Set. InitContainerImages []string `json:"initContainerImages"` }
ReplicaSet is a presentation layer view of Kubernetes Replica Set resource. This means it is Replica Set plus additional augmented data we can get from other sources (like services that target the same pods).
func ToReplicaSet ¶
func ToReplicaSet(replicaSet *apps.ReplicaSet, podInfo *common.PodInfo) ReplicaSet
ToReplicaSet converts replica set api object to replica set model object.
type ReplicaSetCell ¶ added in v1.4.0
type ReplicaSetCell apps.ReplicaSet
func (ReplicaSetCell) GetProperty ¶ added in v1.4.0
func (self ReplicaSetCell) GetProperty(name dataselect.PropertyName) dataselect.ComparableValue
func (ReplicaSetCell) GetResourceSelector ¶ added in v1.4.0
func (self ReplicaSetCell) GetResourceSelector() *metricapi.ResourceSelector
type ReplicaSetDetail ¶
type ReplicaSetDetail struct { ObjectMeta api.ObjectMeta `json:"objectMeta"` TypeMeta api.TypeMeta `json:"typeMeta"` // Aggregate information about pods belonging to this Replica Set. PodInfo common.PodInfo `json:"podInfo"` // Detailed information about Pods belonging to this Replica Set. PodList pod.PodList `json:"podList"` // Detailed information about service related to Replica Set. ServiceList resourceService.ServiceList `json:"serviceList"` // Container images of the Replica Set. ContainerImages []string `json:"containerImages"` // Init Container images of the Replica Set. InitContainerImages []string `json:"initContainerImages"` // List of events related to this Replica Set. EventList common.EventList `json:"eventList"` // Selector of this replica set. Selector *metaV1.LabelSelector `json:"selector"` // List of Horizontal Pod Autoscalers targeting this Replica Set. HorizontalPodAutoscalerList hpa.HorizontalPodAutoscalerList `json:"horizontalPodAutoscalerList"` // List of non-critical errors, that occurred during resource retrieval. Errors []error `json:"errors"` }
ReplicaSetDetail is a presentation layer view of Kubernetes Replica Set resource. This means it is Replica Set plus additional augmented data we can get from other sources (like services that target the same pods).
func GetReplicaSetDetail ¶
func GetReplicaSetDetail(client k8sClient.Interface, metricClient metricapi.MetricClient, namespace, name string) (*ReplicaSetDetail, error)
GetReplicaSetDetail gets replica set details.
type ReplicaSetList ¶
type ReplicaSetList struct { ListMeta api.ListMeta `json:"listMeta"` CumulativeMetrics []metricapi.Metric `json:"cumulativeMetrics"` // Basic information about resources status on the list. Status common.ResourceStatus `json:"status"` // Unordered list of Replica Sets. ReplicaSets []ReplicaSet `json:"replicaSets"` // List of non-critical errors, that occurred during resource retrieval. Errors []error `json:"errors"` }
ReplicaSetList contains a list of Replica Sets in the cluster.
func GetReplicaSetList ¶
func GetReplicaSetList(client client.Interface, nsQuery *common.NamespaceQuery, dsQuery *dataselect.DataSelectQuery, metricClient metricapi.MetricClient) (*ReplicaSetList, error)
GetReplicaSetList returns a list of all Replica Sets in the cluster.
func GetReplicaSetListFromChannels ¶
func GetReplicaSetListFromChannels(channels *common.ResourceChannels, dsQuery *dataselect.DataSelectQuery, metricClient metricapi.MetricClient) (*ReplicaSetList, error)
GetReplicaSetListFromChannels returns a list of all Replica Sets in the cluster reading required resource list once from the channels.
func ToReplicaSetList ¶
func ToReplicaSetList(replicaSets []apps.ReplicaSet, pods []v1.Pod, events []v1.Event, nonCriticalErrors []error, dsQuery *dataselect.DataSelectQuery, metricClient metricapi.MetricClient) *ReplicaSetList
ToReplicaSetList creates paginated list of Replica Set model objects based on Kubernetes Replica Set objects array and related resources arrays.