ingress-nginx-helm/pkg/ingress/annotations/sessionaffinity/main.go

115 lines
3.4 KiB
Go
Raw Normal View History

2017-02-12 23:13:39 +00:00
/*
Copyright 2016 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 sessionaffinity
import (
"regexp"
"github.com/golang/glog"
2017-07-16 19:19:59 +00:00
extensions "k8s.io/api/extensions/v1beta1"
2017-02-12 23:13:39 +00:00
2017-10-06 20:33:32 +00:00
"k8s.io/ingress-nginx/pkg/ingress/annotations/parser"
2017-02-12 23:13:39 +00:00
)
const (
annotationAffinityType = "ingress.kubernetes.io/affinity"
// If a cookie with this name exists,
// its value is used as an index into the list of available backends.
annotationAffinityCookieName = "ingress.kubernetes.io/session-cookie-name"
defaultAffinityCookieName = "INGRESSCOOKIE"
2017-02-12 23:13:39 +00:00
// This is the algorithm used by nginx to generate a value for the session cookie, if
2017-02-23 13:59:09 +00:00
// one isn't supplied and affinity is set to "cookie".
2017-02-12 23:13:39 +00:00
annotationAffinityCookieHash = "ingress.kubernetes.io/session-cookie-hash"
defaultAffinityCookieHash = "md5"
)
var (
affinityCookieHashRegex = regexp.MustCompile(`^(index|md5|sha1)$`)
)
2017-11-07 16:36:51 +00:00
// Config describes the per ingress session affinity config
type Config struct {
2017-02-12 23:13:39 +00:00
// The type of affinity that will be used
2017-11-07 16:36:51 +00:00
Type string `json:"type"`
Cookie
2017-02-12 23:13:39 +00:00
}
2017-11-07 16:36:51 +00:00
// Cookie describes the Config of cookie type affinity
type Cookie struct {
2017-02-12 23:13:39 +00:00
// The name of the cookie that will be used in case of cookie affinity type.
Name string `json:"name"`
// The hash that will be used to encode the cookie in case of cookie affinity type
Hash string `json:"hash"`
}
2017-11-07 16:36:51 +00:00
// cookieAffinityParse gets the annotation values related to Cookie Affinity
2017-02-12 23:13:39 +00:00
// It also sets default values when no value or incorrect value is found
2017-11-07 16:36:51 +00:00
func cookieAffinityParse(ing *extensions.Ingress) *Cookie {
2017-02-12 23:13:39 +00:00
sn, err := parser.GetStringAnnotation(annotationAffinityCookieName, ing)
if err != nil || sn == "" {
glog.V(3).Infof("Ingress %v: No value found in annotation %v. Using the default %v", ing.Name, annotationAffinityCookieName, defaultAffinityCookieName)
sn = defaultAffinityCookieName
}
sh, err := parser.GetStringAnnotation(annotationAffinityCookieHash, ing)
if err != nil || !affinityCookieHashRegex.MatchString(sh) {
glog.V(3).Infof("Invalid or no annotation value found in Ingress %v: %v. Setting it to default %v", ing.Name, annotationAffinityCookieHash, defaultAffinityCookieHash)
sh = defaultAffinityCookieHash
}
2017-11-07 16:36:51 +00:00
return &Cookie{
2017-02-12 23:13:39 +00:00
Name: sn,
Hash: sh,
}
}
// NewParser creates a new Affinity annotation parser
func NewParser() parser.IngressAnnotation {
return affinity{}
}
type affinity struct {
}
2017-02-12 23:13:39 +00:00
// ParseAnnotations parses the annotations contained in the ingress
// rule used to configure the affinity directives
func (a affinity) Parse(ing *extensions.Ingress) (interface{}, error) {
2017-11-07 16:36:51 +00:00
cookie := &Cookie{}
2017-02-12 23:13:39 +00:00
// Check the type of affinity that will be used
at, err := parser.GetStringAnnotation(annotationAffinityType, ing)
if err != nil {
at = ""
}
2017-02-12 23:13:39 +00:00
switch at {
case "cookie":
2017-11-07 16:36:51 +00:00
cookie = cookieAffinityParse(ing)
2017-02-12 23:13:39 +00:00
default:
glog.V(3).Infof("No default affinity was found for Ingress %v", ing.Name)
}
2017-11-07 16:36:51 +00:00
return &Config{
Type: at,
Cookie: *cookie,
}, nil
2017-02-12 23:13:39 +00:00
}