forked from kubernetes-retired/contrib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
141 lines (112 loc) · 3.64 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
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 main
import (
"flag"
"os"
"os/signal"
"syscall"
"time"
"github.com/golang/glog"
"github.com/spf13/pflag"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/client/unversioned"
kubectl_util "k8s.io/kubernetes/pkg/kubectl/cmd/util"
"k8s.io/kubernetes/pkg/util/wait"
)
var (
flags = pflag.NewFlagSet("", pflag.ContinueOnError)
cluster = flags.Bool("use-kubernetes-cluster-service", true, `If true, use the built in kubernetes
cluster for creating the client`)
useUnicast = flags.Bool("use-unicast", false, `use unicast instead of multicast for communication
with other keepalived instances`)
configMapName = flags.String("services-configmap", "",
`Name of the ConfigMap that contains the definition of the services to expose.
The key in the map indicates the external IP to use. The value is the name of the
service with the format namespace/serviceName and the port of the service could be a number or the
name of the port.`)
// sysctl changes required by keepalived
sysctlAdjustments = map[string]int{
// allows processes to bind() to non-local IP addresses
"net/ipv4/ip_nonlocal_bind": 1,
// enable connection tracking for LVS connections
"net/ipv4/vs/conntrack": 1,
}
)
func main() {
clientConfig := kubectl_util.DefaultClientConfig(flags)
flags.AddGoFlagSet(flag.CommandLine)
flags.Parse(os.Args)
var err error
var kubeClient *unversioned.Client
if *configMapName == "" {
glog.Fatalf("Please specify --services-configmap")
}
if *cluster {
if kubeClient, err = unversioned.NewInCluster(); err != nil {
glog.Fatalf("Failed to create client: %v", err)
}
} else {
config, err := clientConfig.ClientConfig()
if err != nil {
glog.Fatalf("error connecting to the client: %v", err)
}
kubeClient, err = unversioned.New(config)
if err != nil {
glog.Fatalf("error connecting to the client: %v", err)
}
}
namespace, specified, err := clientConfig.Namespace()
if err != nil {
glog.Fatalf("unexpected error: %v", err)
}
if !specified {
namespace = api.NamespaceAll
}
err = loadIPVModule()
if err != nil {
glog.Fatalf("unexpected error: %v", err)
}
err = changeSysctl()
if err != nil {
glog.Fatalf("unexpected error: %v", err)
}
err = resetIPVS()
if err != nil {
glog.Fatalf("unexpected error: %v", err)
}
glog.Info("starting LVS configuration")
if *useUnicast {
glog.Info("keepalived will use unicast to sync the nodes")
}
ipvsc := newIPVSController(kubeClient, namespace, *useUnicast, *configMapName)
go ipvsc.epController.Run(wait.NeverStop)
go ipvsc.svcController.Run(wait.NeverStop)
go ipvsc.syncQueue.run(time.Second, ipvsc.stopCh)
go handleSigterm(ipvsc)
glog.Info("starting keepalived to announce VIPs")
ipvsc.keepalived.Start()
}
func handleSigterm(ipvsc *ipvsControllerController) {
signalChan := make(chan os.Signal, 1)
signal.Notify(signalChan, syscall.SIGTERM)
<-signalChan
glog.Infof("Received SIGTERM, shutting down")
exitCode := 0
if err := ipvsc.Stop(); err != nil {
glog.Infof("Error during shutdown %v", err)
exitCode = 1
}
glog.Infof("Exiting with %v", exitCode)
os.Exit(exitCode)
}