2016-11-10 22:56:29 +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 controller
|
|
|
|
|
|
|
|
import (
|
2016-12-29 20:02:06 +00:00
|
|
|
"github.com/golang/glog"
|
2017-09-17 18:42:31 +00:00
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
"github.com/imdario/mergo"
|
|
|
|
|
2017-08-23 05:00:42 +00:00
|
|
|
api "k8s.io/api/core/v1"
|
|
|
|
|
2017-10-06 20:33:32 +00:00
|
|
|
"k8s.io/ingress-nginx/pkg/ingress"
|
2016-11-10 22:56:29 +00:00
|
|
|
)
|
|
|
|
|
2017-01-10 12:16:18 +00:00
|
|
|
// DeniedKeyName name of the key that contains the reason to deny a location
|
|
|
|
const DeniedKeyName = "Denied"
|
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
// newUpstream creates an upstream without servers.
|
2016-11-11 23:43:35 +00:00
|
|
|
func newUpstream(name string) *ingress.Backend {
|
|
|
|
return &ingress.Backend{
|
2016-11-16 18:24:26 +00:00
|
|
|
Name: name,
|
2016-11-11 23:43:35 +00:00
|
|
|
Endpoints: []ingress.Endpoint{},
|
2017-08-23 05:00:42 +00:00
|
|
|
Service: &api.Service{},
|
2017-06-16 00:43:17 +00:00
|
|
|
SessionAffinity: ingress.SessionAffinityConfig{
|
|
|
|
CookieSessionAffinity: ingress.CookieSessionAffinity{
|
|
|
|
Locations: make(map[string][]string),
|
|
|
|
},
|
|
|
|
},
|
2016-11-10 22:56:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
func mergeLocationAnnotations(loc *ingress.Location, anns map[string]interface{}) {
|
2017-01-10 12:16:18 +00:00
|
|
|
if _, ok := anns[DeniedKeyName]; ok {
|
|
|
|
loc.Denied = anns[DeniedKeyName].(error)
|
2016-12-29 20:02:06 +00:00
|
|
|
}
|
2017-01-10 12:16:18 +00:00
|
|
|
delete(anns, DeniedKeyName)
|
2016-12-29 20:02:06 +00:00
|
|
|
err := mergo.Map(loc, anns)
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("unexpected error merging extracted annotations in location type: %v", err)
|
|
|
|
}
|
|
|
|
}
|