2014-06-06 23:40:48 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 Google Inc. 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.
|
|
|
|
*/
|
2014-06-11 23:02:08 +00:00
|
|
|
|
2014-08-04 03:27:38 +00:00
|
|
|
// The controller manager is responsible for monitoring replication
|
|
|
|
// controllers, and creating corresponding pods to achieve the desired
|
|
|
|
// state. It uses the API to listen for new controllers and to create/delete
|
|
|
|
// pods.
|
2014-06-06 23:40:48 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-09-12 13:45:39 +00:00
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
2014-06-06 23:40:48 +00:00
|
|
|
"time"
|
|
|
|
|
2014-10-22 01:21:44 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
2015-01-05 22:37:07 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/resource"
|
2014-06-15 17:24:36 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/client"
|
2014-10-22 01:21:44 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/cloudprovider"
|
2014-12-19 09:27:01 +00:00
|
|
|
nodeControllerPkg "github.com/GoogleCloudPlatform/kubernetes/pkg/cloudprovider/controller"
|
2014-10-22 01:21:44 +00:00
|
|
|
replicationControllerPkg "github.com/GoogleCloudPlatform/kubernetes/pkg/controller"
|
2014-09-12 13:45:39 +00:00
|
|
|
_ "github.com/GoogleCloudPlatform/kubernetes/pkg/healthz"
|
2014-10-17 21:21:25 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/master/ports"
|
2015-01-25 06:11:10 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/resourcequota"
|
2014-10-03 22:27:22 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/service"
|
2014-06-25 03:51:57 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
|
2014-08-30 06:19:32 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/version/verflag"
|
2015-01-13 19:22:02 +00:00
|
|
|
|
2014-06-25 03:51:57 +00:00
|
|
|
"github.com/golang/glog"
|
2015-01-13 19:22:02 +00:00
|
|
|
flag "github.com/spf13/pflag"
|
2014-06-06 23:40:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2014-10-22 01:21:44 +00:00
|
|
|
port = flag.Int("port", ports.ControllerManagerPort, "The port that the controller-manager's http service runs on")
|
|
|
|
address = util.IP(net.ParseIP("127.0.0.1"))
|
|
|
|
clientConfig = &client.Config{}
|
|
|
|
cloudProvider = flag.String("cloud_provider", "", "The provider for cloud services. Empty string for no provider.")
|
|
|
|
cloudConfigFile = flag.String("cloud_config", "", "The path to the cloud provider configuration file. Empty string for no configuration file.")
|
|
|
|
minionRegexp = flag.String("minion_regexp", "", "If non empty, and -cloud_provider is specified, a regular expression for matching minion VMs.")
|
2015-01-21 01:31:21 +00:00
|
|
|
nodeSyncPeriod = flag.Duration("node_sync_period", 10*time.Second, ""+
|
|
|
|
"The period for syncing nodes from cloudprovider. Longer periods will result in "+
|
|
|
|
"fewer calls to cloud provider, but may delay addition of new nodes to cluster.")
|
2015-01-16 22:28:20 +00:00
|
|
|
resourceQuotaSyncPeriod = flag.Duration("resource_quota_sync_period", 10*time.Second, "The period for syncing quota usage status in the system")
|
|
|
|
registerRetryCount = flag.Int("register_retry_count", 10, ""+
|
|
|
|
"The number of retries for initial node registration. Retry interval equals node_sync_period.")
|
2015-01-21 01:31:21 +00:00
|
|
|
machineList util.StringList
|
2014-10-22 01:21:44 +00:00
|
|
|
// TODO: Discover these by pinging the host machines, and rip out these flags.
|
2015-01-05 22:37:07 +00:00
|
|
|
// TODO: in the meantime, use resource.QuantityFlag() instead of these
|
2015-01-16 22:28:20 +00:00
|
|
|
nodeMilliCPU = flag.Int64("node_milli_cpu", 1000, "The amount of MilliCPU provisioned on each node")
|
|
|
|
nodeMemory = resource.QuantityFlag("node_memory", "3Gi", "The amount of memory (in bytes) provisioned on each node")
|
|
|
|
kubeletConfig = client.KubeletConfig{Port: ports.KubeletPort, EnableHttps: false}
|
2014-06-06 23:40:48 +00:00
|
|
|
)
|
|
|
|
|
2014-09-30 00:15:00 +00:00
|
|
|
func init() {
|
2014-10-04 04:34:30 +00:00
|
|
|
flag.Var(&address, "address", "The IP address to serve on (set to 0.0.0.0 for all interfaces)")
|
2014-10-22 01:21:44 +00:00
|
|
|
flag.Var(&machineList, "machines", "List of machines to schedule onto, comma separated.")
|
2014-09-30 00:15:00 +00:00
|
|
|
client.BindClientConfigFlags(flag.CommandLine, clientConfig)
|
2015-01-16 22:28:20 +00:00
|
|
|
client.BindKubeletClientConfigFlags(flag.CommandLine, &kubeletConfig)
|
2014-09-30 00:15:00 +00:00
|
|
|
}
|
|
|
|
|
2014-10-22 01:21:44 +00:00
|
|
|
func verifyMinionFlags() {
|
|
|
|
if *cloudProvider == "" || *minionRegexp == "" {
|
|
|
|
if len(machineList) == 0 {
|
|
|
|
glog.Info("No machines specified!")
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(machineList) != 0 {
|
|
|
|
glog.Info("-machines is overwritten by -minion_regexp")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-06 23:40:48 +00:00
|
|
|
func main() {
|
2015-01-14 22:59:55 +00:00
|
|
|
util.InitFlags()
|
2014-06-25 03:51:57 +00:00
|
|
|
util.InitLogs()
|
|
|
|
defer util.FlushLogs()
|
2014-06-06 23:40:48 +00:00
|
|
|
|
2014-08-01 05:55:44 +00:00
|
|
|
verflag.PrintAndExitIfRequested()
|
2014-10-22 01:21:44 +00:00
|
|
|
verifyMinionFlags()
|
2014-07-30 22:21:34 +00:00
|
|
|
|
2014-09-30 00:15:00 +00:00
|
|
|
if len(clientConfig.Host) == 0 {
|
2014-08-04 03:27:38 +00:00
|
|
|
glog.Fatal("usage: controller-manager -master <master>")
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
2014-09-30 00:15:00 +00:00
|
|
|
|
|
|
|
kubeClient, err := client.New(clientConfig)
|
2014-08-28 13:56:38 +00:00
|
|
|
if err != nil {
|
2014-09-30 00:15:00 +00:00
|
|
|
glog.Fatalf("Invalid API configuration: %v", err)
|
2014-08-28 13:56:38 +00:00
|
|
|
}
|
2014-06-06 23:40:48 +00:00
|
|
|
|
2014-10-04 04:34:30 +00:00
|
|
|
go http.ListenAndServe(net.JoinHostPort(address.String(), strconv.Itoa(*port)), nil)
|
2014-09-12 13:45:39 +00:00
|
|
|
|
2014-10-03 22:27:22 +00:00
|
|
|
endpoints := service.NewEndpointController(kubeClient)
|
|
|
|
go util.Forever(func() { endpoints.SyncServiceEndpoints() }, time.Second*10)
|
|
|
|
|
2014-10-22 01:21:44 +00:00
|
|
|
controllerManager := replicationControllerPkg.NewReplicationManager(kubeClient)
|
2014-06-17 23:42:29 +00:00
|
|
|
controllerManager.Run(10 * time.Second)
|
2014-10-03 22:27:22 +00:00
|
|
|
|
2015-01-16 22:28:20 +00:00
|
|
|
kubeletClient, err := client.NewKubeletClient(&kubeletConfig)
|
|
|
|
if err != nil {
|
|
|
|
glog.Fatalf("Failure to start kubelet client: %v", err)
|
|
|
|
}
|
2014-10-22 01:21:44 +00:00
|
|
|
cloud := cloudprovider.InitCloudProvider(*cloudProvider, *cloudConfigFile)
|
|
|
|
nodeResources := &api.NodeResources{
|
|
|
|
Capacity: api.ResourceList{
|
2015-01-05 22:37:07 +00:00
|
|
|
api.ResourceCPU: *resource.NewMilliQuantity(*nodeMilliCPU, resource.DecimalSI),
|
|
|
|
api.ResourceMemory: *nodeMemory,
|
2014-10-22 01:21:44 +00:00
|
|
|
},
|
|
|
|
}
|
2015-01-16 22:28:20 +00:00
|
|
|
nodeController := nodeControllerPkg.NewNodeController(cloud, *minionRegexp, machineList, nodeResources, kubeClient, kubeletClient)
|
|
|
|
nodeController.Run(*nodeSyncPeriod, *registerRetryCount)
|
2014-10-22 01:21:44 +00:00
|
|
|
|
2015-01-25 06:11:10 +00:00
|
|
|
resourceQuotaManager := resourcequota.NewResourceQuotaManager(kubeClient)
|
|
|
|
resourceQuotaManager.Run(*resourceQuotaSyncPeriod)
|
|
|
|
|
2014-06-06 23:40:48 +00:00
|
|
|
select {}
|
|
|
|
}
|