ingress-nginx-helm/cmd/plugin/request/request.go

286 lines
7.3 KiB
Go
Raw Normal View History

2019-02-25 20:54:00 +00:00
/*
Copyright 2019 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package request
import (
"fmt"
2019-03-23 02:41:20 +00:00
appsv1 "k8s.io/api/apps/v1"
2019-02-25 20:54:00 +00:00
apiv1 "k8s.io/api/core/v1"
networking "k8s.io/api/networking/v1beta1"
2019-02-25 20:54:00 +00:00
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/cli-runtime/pkg/genericclioptions"
2019-03-23 02:41:20 +00:00
appsv1client "k8s.io/client-go/kubernetes/typed/apps/v1"
2019-02-25 20:54:00 +00:00
corev1 "k8s.io/client-go/kubernetes/typed/core/v1"
typednetworking "k8s.io/client-go/kubernetes/typed/networking/v1beta1"
2019-02-25 20:54:00 +00:00
"k8s.io/ingress-nginx/cmd/plugin/util"
)
2019-03-12 16:52:23 +00:00
// ChoosePod finds a pod either by deployment or by name
func ChoosePod(flags *genericclioptions.ConfigFlags, podName string, deployment string) (apiv1.Pod, error) {
if podName != "" {
return GetNamedPod(flags, podName)
}
2019-02-25 20:54:00 +00:00
2019-03-12 16:52:23 +00:00
return GetDeploymentPod(flags, deployment)
}
// GetNamedPod finds a pod with the given name
func GetNamedPod(flags *genericclioptions.ConfigFlags, name string) (apiv1.Pod, error) {
2019-02-25 20:54:00 +00:00
allPods, err := getPods(flags)
if err != nil {
2019-03-12 16:52:23 +00:00
return apiv1.Pod{}, err
2019-02-25 20:54:00 +00:00
}
for _, pod := range allPods {
2019-03-12 16:52:23 +00:00
if pod.Name == name {
return pod, nil
2019-02-25 20:54:00 +00:00
}
}
2019-03-12 16:52:23 +00:00
return apiv1.Pod{}, fmt.Errorf("Pod %v not found in namespace %v", name, util.GetNamespace(flags))
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
// GetDeploymentPod finds a pod from a given deployment
func GetDeploymentPod(flags *genericclioptions.ConfigFlags, deployment string) (apiv1.Pod, error) {
ings, err := getDeploymentPods(flags, deployment)
2019-02-25 20:54:00 +00:00
if err != nil {
2019-03-12 16:52:23 +00:00
return apiv1.Pod{}, err
2019-02-25 20:54:00 +00:00
}
if len(ings) == 0 {
2019-03-12 16:52:23 +00:00
return apiv1.Pod{}, fmt.Errorf("No pods for deployment %v found in namespace %v", deployment, util.GetNamespace(flags))
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
return ings[0], nil
2019-02-25 20:54:00 +00:00
}
2019-03-23 02:41:20 +00:00
// GetDeployments returns an array of Deployments
func GetDeployments(flags *genericclioptions.ConfigFlags, namespace string) ([]appsv1.Deployment, error) {
rawConfig, err := flags.ToRESTConfig()
if err != nil {
return make([]appsv1.Deployment, 0), err
}
api, err := appsv1client.NewForConfig(rawConfig)
if err != nil {
return make([]appsv1.Deployment, 0), err
}
deployments, err := api.Deployments(namespace).List(metav1.ListOptions{})
if err != nil {
return make([]appsv1.Deployment, 0), err
}
return deployments.Items, nil
}
2019-03-12 16:52:23 +00:00
// GetIngressDefinitions returns an array of Ingress resource definitions
func GetIngressDefinitions(flags *genericclioptions.ConfigFlags, namespace string) ([]networking.Ingress, error) {
2019-03-12 16:52:23 +00:00
rawConfig, err := flags.ToRESTConfig()
2019-02-25 20:54:00 +00:00
if err != nil {
return make([]networking.Ingress, 0), err
2019-02-25 20:54:00 +00:00
}
api, err := typednetworking.NewForConfig(rawConfig)
2019-02-25 20:54:00 +00:00
if err != nil {
return make([]networking.Ingress, 0), err
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
pods, err := api.Ingresses(namespace).List(metav1.ListOptions{})
2019-02-25 20:54:00 +00:00
if err != nil {
return make([]networking.Ingress, 0), err
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
return pods.Items, nil
}
2019-02-25 20:54:00 +00:00
2019-03-12 16:52:23 +00:00
// GetNumEndpoints counts the number of endpoints for the service with the given name
func GetNumEndpoints(flags *genericclioptions.ConfigFlags, namespace string, serviceName string) (*int, error) {
endpoints, err := GetEndpointsByName(flags, namespace, serviceName)
2019-02-25 20:54:00 +00:00
if err != nil {
2019-03-12 16:52:23 +00:00
return nil, err
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
if endpoints == nil {
return nil, nil
}
2019-02-25 20:54:00 +00:00
2019-03-12 16:52:23 +00:00
ret := 0
for _, subset := range endpoints.Subsets {
ret += len(subset.Addresses)
}
return &ret, nil
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
// GetEndpointsByName returns the endpoints for the service with the given name
func GetEndpointsByName(flags *genericclioptions.ConfigFlags, namespace string, name string) (*apiv1.Endpoints, error) {
allEndpoints, err := getEndpoints(flags, namespace)
2019-02-25 20:54:00 +00:00
if err != nil {
2019-03-12 16:52:23 +00:00
return nil, err
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
for _, endpoints := range allEndpoints {
if endpoints.Name == name {
return &endpoints, nil
2019-02-25 20:54:00 +00:00
}
}
2019-03-12 16:52:23 +00:00
return nil, nil
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
var endpointsCache = make(map[string]*[]apiv1.Endpoints)
func getEndpoints(flags *genericclioptions.ConfigFlags, namespace string) ([]apiv1.Endpoints, error) {
cachedEndpoints, ok := endpointsCache[namespace]
if ok {
return *cachedEndpoints, nil
}
if namespace != "" {
tryAllNamespacesEndpointsCache(flags)
}
cachedEndpoints = tryFilteringEndpointsFromAllNamespacesCache(flags, namespace)
if cachedEndpoints != nil {
return *cachedEndpoints, nil
}
2019-02-25 20:54:00 +00:00
rawConfig, err := flags.ToRESTConfig()
if err != nil {
2019-03-12 16:52:23 +00:00
return nil, err
2019-02-25 20:54:00 +00:00
}
api, err := corev1.NewForConfig(rawConfig)
if err != nil {
2019-03-12 16:52:23 +00:00
return nil, err
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
endpointsList, err := api.Endpoints(namespace).List(metav1.ListOptions{})
2019-02-25 20:54:00 +00:00
if err != nil {
2019-03-12 16:52:23 +00:00
return nil, err
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
endpoints := endpointsList.Items
2019-02-25 20:54:00 +00:00
2019-03-12 16:52:23 +00:00
endpointsCache[namespace] = &endpoints
return endpoints, nil
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
func tryAllNamespacesEndpointsCache(flags *genericclioptions.ConfigFlags) {
_, ok := endpointsCache[""]
if !ok {
_, err := getEndpoints(flags, "")
if err != nil {
endpointsCache[""] = nil
}
}
}
func tryFilteringEndpointsFromAllNamespacesCache(flags *genericclioptions.ConfigFlags, namespace string) *[]apiv1.Endpoints {
allEndpoints, _ := endpointsCache[""]
if allEndpoints != nil {
endpoints := make([]apiv1.Endpoints, 0)
for _, thisEndpoints := range *allEndpoints {
if thisEndpoints.Namespace == namespace {
endpoints = append(endpoints, thisEndpoints)
}
}
endpointsCache[namespace] = &endpoints
return &endpoints
}
return nil
}
// GetServiceByName finds and returns the service definition with the given name
func GetServiceByName(flags *genericclioptions.ConfigFlags, name string, services *[]apiv1.Service) (apiv1.Service, error) {
if services == nil {
servicesArray, err := getServices(flags)
if err != nil {
return apiv1.Service{}, err
}
services = &servicesArray
}
for _, svc := range *services {
if svc.Name == name {
return svc, nil
}
}
return apiv1.Service{}, fmt.Errorf("Could not find service %v in namespace %v", name, util.GetNamespace(flags))
}
func getPods(flags *genericclioptions.ConfigFlags) ([]apiv1.Pod, error) {
namespace := util.GetNamespace(flags)
2019-02-25 20:54:00 +00:00
rawConfig, err := flags.ToRESTConfig()
if err != nil {
2019-03-12 16:52:23 +00:00
return make([]apiv1.Pod, 0), err
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
api, err := corev1.NewForConfig(rawConfig)
2019-02-25 20:54:00 +00:00
if err != nil {
2019-03-12 16:52:23 +00:00
return make([]apiv1.Pod, 0), err
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
pods, err := api.Pods(namespace).List(metav1.ListOptions{})
2019-02-25 20:54:00 +00:00
if err != nil {
2019-03-12 16:52:23 +00:00
return make([]apiv1.Pod, 0), err
2019-02-25 20:54:00 +00:00
}
return pods.Items, nil
}
2019-03-12 16:52:23 +00:00
func getDeploymentPods(flags *genericclioptions.ConfigFlags, deployment string) ([]apiv1.Pod, error) {
pods, err := getPods(flags)
2019-02-25 20:54:00 +00:00
if err != nil {
2019-03-12 16:52:23 +00:00
return make([]apiv1.Pod, 0), err
2019-02-25 20:54:00 +00:00
}
2019-03-12 16:52:23 +00:00
ingressPods := make([]apiv1.Pod, 0)
for _, pod := range pods {
if util.PodInDeployment(pod, deployment) {
2019-03-12 16:52:23 +00:00
ingressPods = append(ingressPods, pod)
2019-02-25 20:54:00 +00:00
}
}
2019-03-12 16:52:23 +00:00
return ingressPods, nil
2019-02-25 20:54:00 +00:00
}
func getServices(flags *genericclioptions.ConfigFlags) ([]apiv1.Service, error) {
namespace := util.GetNamespace(flags)
rawConfig, err := flags.ToRESTConfig()
if err != nil {
return make([]apiv1.Service, 0), err
}
api, err := corev1.NewForConfig(rawConfig)
if err != nil {
return make([]apiv1.Service, 0), err
}
services, err := api.Services(namespace).List(metav1.ListOptions{})
if err != nil {
return make([]apiv1.Service, 0), err
}
return services.Items, nil
}