ingress-nginx-helm/internal/ingress/controller/util.go

67 lines
2 KiB
Go
Raw Normal View History

/*
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 (
"github.com/golang/glog"
2017-09-17 18:42:31 +00:00
2017-08-23 05:00:42 +00:00
api "k8s.io/api/core/v1"
2017-11-06 22:34:30 +00:00
"k8s.io/kubernetes/pkg/util/sysctl"
2017-08-23 05:00:42 +00:00
2017-11-07 22:02:12 +00:00
"k8s.io/ingress-nginx/internal/ingress"
)
// 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{},
SessionAffinity: ingress.SessionAffinityConfig{
CookieSessionAffinity: ingress.CookieSessionAffinity{
Locations: make(map[string][]string),
},
},
}
}
2017-11-06 22:34:30 +00:00
// sysctlSomaxconn returns the value of net.core.somaxconn, i.e.
// maximum number of connections that can be queued for acceptance
// http://nginx.org/en/docs/http/ngx_http_core_module.html#listen
func sysctlSomaxconn() int {
maxConns, err := sysctl.New().GetSysctl("net/core/somaxconn")
if err != nil || maxConns < 512 {
glog.V(3).Infof("system net.core.somaxconn=%v (using system default)", maxConns)
return 511
}
return maxConns
}
// sysctlFSFileMax returns the value of fs.file-max, i.e.
// maximum number of open file descriptors
func sysctlFSFileMax() int {
2018-02-08 16:55:25 +00:00
fileMax, err := sysctl.New().GetSysctl("fs/file-max")
2017-11-06 22:34:30 +00:00
if err != nil {
2018-02-08 16:55:25 +00:00
glog.Errorf("unexpected error reading system maximum number of open file descriptors (fs.file-max): %v", err)
2017-11-06 22:34:30 +00:00
// returning 0 means don't render the value
return 0
}
2018-02-08 16:55:25 +00:00
glog.V(3).Infof("system fs.file-max=%v", fileMax)
return fileMax
2017-11-06 22:34:30 +00:00
}