gatus/k8s/k8s.go

11 lines
260 B
Go
Raw Normal View History

package k8s
import (
"k8s.io/api/core/v1"
)
// GetKubernetesServices return a list of Services from the given namespace
2021-02-20 02:34:35 +01:00
func GetKubernetesServices(client KubernetesClientAPI, namespace string) ([]v1.Service, error) {
return client.GetServices(namespace)
}