func GetHorizontalPodAutoscalerList(client k8sClient.Interface, nsQuery *common.NamespaceQuery) (*HorizontalPodAutoscalerList, error) { channel := common.GetHorizontalPodAutoscalerListChannel(client, nsQuery, 1) hpaList := <-channel.List if err := <-channel.Error; err != nil { return nil, err } return createHorizontalPodAutoscalerList(hpaList.Items), nil }
func GetHorizontalPodAutoscalerListForResource(client k8sClient.Interface, namespace, kind, name string) (*HorizontalPodAutoscalerList, error) { nsQuery := common.NewSameNamespaceQuery(namespace) channel := common.GetHorizontalPodAutoscalerListChannel(client, nsQuery, 1) hpaList := <-channel.List if err := <-channel.Error; err != nil { return nil, err } filteredHpaList := make([]autoscaling.HorizontalPodAutoscaler, 0) for _, hpa := range hpaList.Items { if hpa.Spec.ScaleTargetRef.Kind == kind && hpa.Spec.ScaleTargetRef.Name == name { filteredHpaList = append(filteredHpaList, hpa) } } return createHorizontalPodAutoscalerList(filteredHpaList), nil }