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
e8c5b249
Commit
e8c5b249
authored
Mar 31, 2019
by
galal-hussein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change address to bind-address for scheduler and api
parent
9a1a1ecc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
server.go
pkg/daemons/control/server.go
+2
-2
No files found.
pkg/daemons/control/server.go
View file @
e8c5b249
...
@@ -102,7 +102,7 @@ func controllerManager(cfg *config.Control, runtime *config.ControlRuntime) {
...
@@ -102,7 +102,7 @@ func controllerManager(cfg *config.Control, runtime *config.ControlRuntime) {
"--cluster-cidr"
,
cfg
.
ClusterIPRange
.
String
(),
"--cluster-cidr"
,
cfg
.
ClusterIPRange
.
String
(),
"--root-ca-file"
,
runtime
.
TokenCA
,
"--root-ca-file"
,
runtime
.
TokenCA
,
"--port"
,
"10252"
,
"--port"
,
"10252"
,
"--address"
,
"127.0.0.1"
,
"--
bind-
address"
,
"127.0.0.1"
,
"--secure-port"
,
"0"
,
"--secure-port"
,
"0"
,
}
}
if
cfg
.
NoLeaderElect
{
if
cfg
.
NoLeaderElect
{
...
@@ -122,7 +122,7 @@ func scheduler(cfg *config.Control, runtime *config.ControlRuntime) {
...
@@ -122,7 +122,7 @@ func scheduler(cfg *config.Control, runtime *config.ControlRuntime) {
args
:=
[]
string
{
args
:=
[]
string
{
"--kubeconfig"
,
runtime
.
KubeConfigSystem
,
"--kubeconfig"
,
runtime
.
KubeConfigSystem
,
"--port"
,
"10251"
,
"--port"
,
"10251"
,
"--address"
,
"127.0.0.1"
,
"--
bind-
address"
,
"127.0.0.1"
,
"--secure-port"
,
"0"
,
"--secure-port"
,
"0"
,
}
}
if
cfg
.
NoLeaderElect
{
if
cfg
.
NoLeaderElect
{
...
...
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