2016-02-22 00:13:08 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
|
|
|
|
|
|
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 main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/golang/glog"
|
|
|
|
"github.com/spf13/pflag"
|
|
|
|
|
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
|
|
"k8s.io/kubernetes/pkg/client/unversioned"
|
2016-02-27 15:17:54 +00:00
|
|
|
"k8s.io/kubernetes/pkg/runtime"
|
2016-02-22 00:13:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
healthPort = 10249
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
flags = pflag.NewFlagSet("", pflag.ExitOnError)
|
|
|
|
|
|
|
|
defaultSvc = flags.String("default-backend-service", "",
|
|
|
|
`Service used to serve a 404 page for the default backend. Takes the form
|
|
|
|
namespace/name. The controller uses the first node port of this Service for
|
|
|
|
the default backend.`)
|
|
|
|
|
2016-03-19 20:17:58 +00:00
|
|
|
tcpConfigMapName = flags.String("tcp-services-configmap", "",
|
|
|
|
`Name of the ConfigMap that containes the definition of the TCP services to expose.
|
|
|
|
The key in the map indicates the external port to be used. The value is the name of the
|
|
|
|
service with the format namespace/serviceName and the port of the service could be a number of the
|
|
|
|
name of the port.
|
|
|
|
The ports 80 and 443 are not allowed as external ports. This ports are reserved for nginx`)
|
2016-02-22 00:13:08 +00:00
|
|
|
|
|
|
|
resyncPeriod = flags.Duration("sync-period", 30*time.Second,
|
|
|
|
`Relist and confirm cloud resources this often.`)
|
|
|
|
|
|
|
|
watchNamespace = flags.String("watch-namespace", api.NamespaceAll,
|
|
|
|
`Namespace to watch for Ingress. Default is to watch all namespaces`)
|
|
|
|
|
|
|
|
healthzPort = flags.Int("healthz-port", healthPort, "port for healthz endpoint.")
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flags.AddGoFlagSet(flag.CommandLine)
|
|
|
|
flags.Parse(os.Args)
|
|
|
|
|
|
|
|
if *defaultSvc == "" {
|
|
|
|
glog.Fatalf("Please specify --default-backend")
|
|
|
|
}
|
|
|
|
|
|
|
|
kubeClient, err := unversioned.NewInCluster()
|
|
|
|
if err != nil {
|
|
|
|
glog.Fatalf("failed to create client: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
lbInfo, _ := getLBDetails(kubeClient)
|
2016-03-19 20:17:58 +00:00
|
|
|
|
|
|
|
err = isValidService(kubeClient, *defaultSvc)
|
2016-02-25 17:54:12 +00:00
|
|
|
if err != nil {
|
2016-03-19 20:17:58 +00:00
|
|
|
glog.Fatalf("no service with name %v found: %v", *defaultSvc, err)
|
2016-02-25 17:54:12 +00:00
|
|
|
}
|
2016-02-22 00:13:08 +00:00
|
|
|
|
2016-03-19 20:17:58 +00:00
|
|
|
lbc, err := newLoadBalancerController(kubeClient, *resyncPeriod, *defaultSvc, *watchNamespace, *nxgConfigMap, *tcpConfigMapName, lbInfo)
|
2016-02-22 00:13:08 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.Fatalf("%v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
lbc.Run()
|
|
|
|
|
|
|
|
for {
|
2016-03-15 02:29:13 +00:00
|
|
|
glog.Infof("Handled quit, awaiting pod deletion")
|
2016-02-22 00:13:08 +00:00
|
|
|
time.Sleep(30 * time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-27 15:17:54 +00:00
|
|
|
// lbInfo contains runtime information about the pod
|
2016-02-22 00:13:08 +00:00
|
|
|
type lbInfo struct {
|
2016-02-27 15:17:54 +00:00
|
|
|
ObjectName string
|
|
|
|
DeployType runtime.Object
|
2016-02-22 00:13:08 +00:00
|
|
|
Podname string
|
|
|
|
PodIP string
|
|
|
|
PodNamespace string
|
|
|
|
}
|