2017-03-09 22:08:26 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 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 class
|
|
|
|
|
|
|
|
import (
|
2019-06-09 22:49:59 +00:00
|
|
|
networking "k8s.io/api/networking/v1beta1"
|
2020-04-20 21:38:50 +00:00
|
|
|
"k8s.io/ingress-nginx/internal/k8s"
|
2017-03-09 22:08:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// IngressKey picks a specific "class" for the Ingress.
|
|
|
|
// The controller only processes Ingresses with this annotation either
|
|
|
|
// unset, or set to either the configured value or the empty string.
|
|
|
|
IngressKey = "kubernetes.io/ingress.class"
|
|
|
|
)
|
|
|
|
|
2017-11-22 13:35:47 +00:00
|
|
|
var (
|
2020-06-19 06:04:38 +00:00
|
|
|
// DefaultClass defines the default class used in the nginx ingress controller
|
2017-11-22 13:35:47 +00:00
|
|
|
DefaultClass = "nginx"
|
|
|
|
|
|
|
|
// IngressClass sets the runtime ingress class to use
|
|
|
|
// An empty string means accept all ingresses without
|
|
|
|
// annotation and the ones configured with class nginx
|
2017-11-28 22:27:38 +00:00
|
|
|
IngressClass = "nginx"
|
2017-11-22 13:35:47 +00:00
|
|
|
)
|
|
|
|
|
2020-04-20 21:38:50 +00:00
|
|
|
// IsValid returns true if the given Ingress specify the ingress.class
|
|
|
|
// annotation or IngressClassName resource for Kubernetes >= v1.18
|
2019-06-09 22:49:59 +00:00
|
|
|
func IsValid(ing *networking.Ingress) bool {
|
2020-04-20 21:38:50 +00:00
|
|
|
// 1. with annotation
|
|
|
|
ingress, ok := ing.GetAnnotations()[IngressKey]
|
|
|
|
if ok {
|
|
|
|
// empty annotation and same annotation on ingress
|
|
|
|
if ingress == "" && IngressClass == DefaultClass {
|
|
|
|
return true
|
|
|
|
}
|
2017-03-09 22:08:26 +00:00
|
|
|
|
2020-04-20 21:38:50 +00:00
|
|
|
return ingress == IngressClass
|
2020-03-31 14:14:03 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 21:38:50 +00:00
|
|
|
// 2. k8s < v1.18. Check default annotation
|
2020-10-23 15:58:10 +00:00
|
|
|
if !k8s.IsIngressV1Beta1Ready {
|
2020-04-20 21:38:50 +00:00
|
|
|
return IngressClass == DefaultClass
|
2020-03-31 14:14:03 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 21:38:50 +00:00
|
|
|
// 3. without annotation and IngressClass. Check default annotation
|
|
|
|
if k8s.IngressClass == nil {
|
|
|
|
return IngressClass == DefaultClass
|
2017-03-09 22:08:26 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 21:38:50 +00:00
|
|
|
// 4. with IngressClass
|
2020-08-07 17:09:14 +00:00
|
|
|
if ing.Spec.IngressClassName != nil {
|
|
|
|
return k8s.IngressClass.Name == *ing.Spec.IngressClassName
|
|
|
|
}
|
|
|
|
return false
|
2017-03-09 22:08:26 +00:00
|
|
|
}
|