Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
b89454a4
Commit
b89454a4
authored
Jan 30, 2015
by
Joe Beda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert the scheduler binary to hyperkube.
parent
bbb44791
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
119 additions
and
53 deletions
+119
-53
hyperkube.go
cmd/hyperkube/hyperkube.go
+2
-0
scheduler.go
plugin/cmd/kube-scheduler/scheduler.go
+6
-53
server.go
plugin/pkg/scheduler/server/server.go
+111
-0
No files found.
cmd/hyperkube/hyperkube.go
View file @
b89454a4
...
...
@@ -24,6 +24,7 @@ import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/controllermanager"
"github.com/GoogleCloudPlatform/kubernetes/pkg/hyperkube"
apiserver
"github.com/GoogleCloudPlatform/kubernetes/pkg/master/server"
sched
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/server"
)
func
main
()
{
...
...
@@ -34,6 +35,7 @@ func main() {
hk
.
AddServer
(
apiserver
.
NewHyperkubeServer
())
hk
.
AddServer
(
controllermanager
.
NewHyperkubeServer
())
hk
.
AddServer
(
sched
.
NewHyperkubeServer
())
hk
.
RunToExit
(
os
.
Args
)
}
plugin/cmd/kube-scheduler/scheduler.go
View file @
b89454a4
...
...
@@ -17,69 +17,22 @@ limitations under the License.
package
main
import
(
"net"
"net/http"
"strconv"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/client"
"github.com/GoogleCloudPlatform/kubernetes/pkg/client/record"
_
"github.com/GoogleCloudPlatform/kubernetes/pkg/healthz"
"github.com/GoogleCloudPlatform/kubernetes/pkg/master/ports"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/pkg/version/verflag"
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler"
_
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/algorithmprovider"
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/factory"
"github.com/golang/glog"
flag
"github.com/spf13/pflag"
)
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/server"
var
(
port
=
flag
.
Int
(
"port"
,
ports
.
SchedulerPort
,
"The port that the scheduler's http service runs on"
)
address
=
util
.
IP
(
net
.
ParseIP
(
"127.0.0.1"
))
clientConfig
=
&
client
.
Config
{}
algorithmProvider
=
flag
.
String
(
"algorithm_provider"
,
factory
.
DefaultProvider
,
"The scheduling algorithm provider to use"
)
"github.com/spf13/pflag"
)
func
init
()
{
flag
.
Var
(
&
address
,
"address"
,
"The IP address to serve on (set to 0.0.0.0 for all interfaces)"
)
client
.
BindClientConfigFlags
(
flag
.
CommandLine
,
clientConfig
)
}
func
main
()
{
s
:=
server
.
NewSchedulerServer
()
s
.
AddFlags
(
pflag
.
CommandLine
)
util
.
InitFlags
()
util
.
InitLogs
()
defer
util
.
FlushLogs
()
verflag
.
PrintAndExitIfRequested
()
kubeClient
,
err
:=
client
.
New
(
clientConfig
)
if
err
!=
nil
{
glog
.
Fatalf
(
"Invalid API configuration: %v"
,
err
)
}
record
.
StartRecording
(
kubeClient
.
Events
(
""
),
api
.
EventSource
{
Component
:
"scheduler"
})
go
http
.
ListenAndServe
(
net
.
JoinHostPort
(
address
.
String
(),
strconv
.
Itoa
(
*
port
)),
nil
)
configFactory
:=
factory
.
NewConfigFactory
(
kubeClient
)
config
,
err
:=
createConfig
(
configFactory
)
if
err
!=
nil
{
glog
.
Fatalf
(
"Failed to create scheduler configuration: %v"
,
err
)
}
s
:=
scheduler
.
New
(
config
)
s
.
Run
()
select
{}
}
func
createConfig
(
configFactory
*
factory
.
ConfigFactory
)
(
*
scheduler
.
Config
,
error
)
{
// check of algorithm provider is registered and fail fast
_
,
err
:=
factory
.
GetAlgorithmProvider
(
*
algorithmProvider
)
if
err
!=
nil
{
return
nil
,
err
}
return
configFactory
.
CreateFromProvider
(
*
algorithmProvider
)
s
.
Run
(
pflag
.
CommandLine
.
Args
())
}
plugin/pkg/scheduler/server/server.go
0 → 100644
View file @
b89454a4
/*
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.
*/
// Package server implements a Server object for running the scheduler.
package
server
import
(
"net"
"net/http"
"strconv"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/client"
"github.com/GoogleCloudPlatform/kubernetes/pkg/client/record"
_
"github.com/GoogleCloudPlatform/kubernetes/pkg/healthz"
"github.com/GoogleCloudPlatform/kubernetes/pkg/hyperkube"
"github.com/GoogleCloudPlatform/kubernetes/pkg/master/ports"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler"
_
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/algorithmprovider"
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/factory"
"github.com/golang/glog"
"github.com/spf13/pflag"
)
// SchedulerServer has all the context and params needed to run a Scheduler
type
SchedulerServer
struct
{
Port
int
Address
util
.
IP
ClientConfig
client
.
Config
AlgorithmProvider
string
}
// NewSchedulerServer creates a new SchedulerServer with default parameters
func
NewSchedulerServer
()
*
SchedulerServer
{
s
:=
SchedulerServer
{
Port
:
ports
.
SchedulerPort
,
Address
:
util
.
IP
(
net
.
ParseIP
(
"127.0.0.1"
)),
AlgorithmProvider
:
factory
.
DefaultProvider
,
}
return
&
s
}
// NewHyperkubeServer creates a new hyperkube Server object that includes the
// description and flags.
func
NewHyperkubeServer
()
*
hyperkube
.
Server
{
s
:=
NewSchedulerServer
()
hks
:=
hyperkube
.
Server
{
SimpleUsage
:
"scheduler"
,
Long
:
"Implements a Kubernetes scheduler. This will assign pods to kubelets based on capacity and constraints."
,
Run
:
func
(
_
*
hyperkube
.
Server
,
args
[]
string
)
error
{
return
s
.
Run
(
args
)
},
}
s
.
AddFlags
(
hks
.
Flags
())
return
&
hks
}
// AddFlags adds flags for a specific SchedulerServer to the specified FlagSet
func
(
s
*
SchedulerServer
)
AddFlags
(
fs
*
pflag
.
FlagSet
)
{
fs
.
IntVar
(
&
s
.
Port
,
"port"
,
s
.
Port
,
"The port that the scheduler's http service runs on"
)
fs
.
Var
(
&
s
.
Address
,
"address"
,
"The IP address to serve on (set to 0.0.0.0 for all interfaces)"
)
client
.
BindClientConfigFlags
(
fs
,
&
s
.
ClientConfig
)
fs
.
StringVar
(
&
s
.
AlgorithmProvider
,
"algorithm_provider"
,
s
.
AlgorithmProvider
,
"The scheduling algorithm provider to use"
)
}
// Run runs the specified SchedulerServer. This should never exit.
func
(
s
*
SchedulerServer
)
Run
(
_
[]
string
)
error
{
kubeClient
,
err
:=
client
.
New
(
&
s
.
ClientConfig
)
if
err
!=
nil
{
glog
.
Fatalf
(
"Invalid API configuration: %v"
,
err
)
}
record
.
StartRecording
(
kubeClient
.
Events
(
""
),
api
.
EventSource
{
Component
:
"scheduler"
})
go
http
.
ListenAndServe
(
net
.
JoinHostPort
(
s
.
Address
.
String
(),
strconv
.
Itoa
(
s
.
Port
)),
nil
)
configFactory
:=
factory
.
NewConfigFactory
(
kubeClient
)
config
,
err
:=
s
.
createConfig
(
configFactory
)
if
err
!=
nil
{
glog
.
Fatalf
(
"Failed to create scheduler configuration: %v"
,
err
)
}
sched
:=
scheduler
.
New
(
config
)
sched
.
Run
()
select
{}
}
func
(
s
*
SchedulerServer
)
createConfig
(
configFactory
*
factory
.
ConfigFactory
)
(
*
scheduler
.
Config
,
error
)
{
// check of algorithm provider is registered and fail fast
_
,
err
:=
factory
.
GetAlgorithmProvider
(
s
.
AlgorithmProvider
)
if
err
!=
nil
{
return
nil
,
err
}
return
configFactory
.
CreateFromProvider
(
s
.
AlgorithmProvider
)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment