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
60420359
Commit
60420359
authored
Oct 28, 2015
by
Brendan Burns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a bug where nodes that weren't schedulable or ready are added to load balancers
parent
88008de9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
128 additions
and
3 deletions
+128
-3
servicecontroller.go
pkg/controller/service/servicecontroller.go
+30
-3
servicecontroller_test.go
pkg/controller/service/servicecontroller_test.go
+98
-0
No files found.
pkg/controller/service/servicecontroller.go
View file @
60420359
...
...
@@ -581,13 +581,40 @@ func stringSlicesEqual(x, y []string) bool {
}
func
hostsFromNodeList
(
list
*
api
.
NodeList
)
[]
string
{
result
:=
make
([]
string
,
len
(
list
.
Items
))
result
:=
[]
string
{}
for
ix
:=
range
list
.
Items
{
result
[
ix
]
=
list
.
Items
[
ix
]
.
Name
if
list
.
Items
[
ix
]
.
Spec
.
Unschedulable
{
continue
}
result
=
append
(
result
,
list
.
Items
[
ix
]
.
Name
)
}
return
result
}
func
getNodeConditionPredicate
()
cache
.
NodeConditionPredicate
{
return
func
(
node
api
.
Node
)
bool
{
// We add the master to the node list, but its unschedulable. So we use this to filter
// the master.
// TODO: Use a node annotation to indicate the master
if
node
.
Spec
.
Unschedulable
{
return
false
}
// If we have no info, don't accept
if
len
(
node
.
Status
.
Conditions
)
==
0
{
return
false
}
for
_
,
cond
:=
range
node
.
Status
.
Conditions
{
// We consider the node for load balancing only when its NodeReady condition status
// is ConditionTrue
if
cond
.
Type
==
api
.
NodeReady
&&
cond
.
Status
!=
api
.
ConditionTrue
{
glog
.
V
(
4
)
.
Infof
(
"Ignoring node %v with %v condition status %v"
,
node
.
Name
,
cond
.
Type
,
cond
.
Status
)
return
false
}
}
return
true
}
}
// nodeSyncLoop handles updating the hosts pointed to by all load
// balancers whenever the set of nodes in the cluster changes.
func
(
s
*
ServiceController
)
nodeSyncLoop
(
period
time
.
Duration
)
{
...
...
@@ -598,7 +625,7 @@ func (s *ServiceController) nodeSyncLoop(period time.Duration) {
// something to compile, and gofmt1.4 complains about using `_ = range`.
for
now
:=
range
time
.
Tick
(
period
)
{
_
=
now
nodes
,
err
:=
s
.
nodeLister
.
List
()
nodes
,
err
:=
s
.
nodeLister
.
NodeCondition
(
getNodeConditionPredicate
())
.
List
()
if
err
!=
nil
{
glog
.
Errorf
(
"Failed to retrieve current set of nodes from node lister: %v"
,
err
)
continue
...
...
pkg/controller/service/servicecontroller_test.go
View file @
60420359
...
...
@@ -228,4 +228,102 @@ func TestUpdateNodesInExternalLoadBalancer(t *testing.T) {
}
}
func
TestHostsFromNodeList
(
t
*
testing
.
T
)
{
tests
:=
[]
struct
{
nodes
*
api
.
NodeList
expectedHosts
[]
string
}{
{
nodes
:
&
api
.
NodeList
{},
expectedHosts
:
[]
string
{},
},
{
nodes
:
&
api
.
NodeList
{
Items
:
[]
api
.
Node
{
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"foo"
},
Status
:
api
.
NodeStatus
{
Phase
:
api
.
NodeRunning
},
},
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"bar"
},
Status
:
api
.
NodeStatus
{
Phase
:
api
.
NodeRunning
},
},
},
},
expectedHosts
:
[]
string
{
"foo"
,
"bar"
},
},
{
nodes
:
&
api
.
NodeList
{
Items
:
[]
api
.
Node
{
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"foo"
},
Status
:
api
.
NodeStatus
{
Phase
:
api
.
NodeRunning
},
},
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"bar"
},
Status
:
api
.
NodeStatus
{
Phase
:
api
.
NodeRunning
},
},
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"unschedulable"
},
Spec
:
api
.
NodeSpec
{
Unschedulable
:
true
},
Status
:
api
.
NodeStatus
{
Phase
:
api
.
NodeRunning
},
},
},
},
expectedHosts
:
[]
string
{
"foo"
,
"bar"
},
},
}
for
_
,
test
:=
range
tests
{
hosts
:=
hostsFromNodeList
(
test
.
nodes
)
if
!
reflect
.
DeepEqual
(
hosts
,
test
.
expectedHosts
)
{
t
.
Errorf
(
"expected: %v, saw: %v"
,
test
.
expectedHosts
,
hosts
)
}
}
}
func
TestGetNodeConditionPredicate
(
t
*
testing
.
T
)
{
tests
:=
[]
struct
{
node
api
.
Node
expectAccept
bool
name
string
}{
{
node
:
api
.
Node
{},
expectAccept
:
false
,
name
:
"empty"
,
},
{
node
:
api
.
Node
{
Status
:
api
.
NodeStatus
{
Conditions
:
[]
api
.
NodeCondition
{
{
Type
:
api
.
NodeReady
,
Status
:
api
.
ConditionTrue
},
},
},
},
expectAccept
:
true
,
name
:
"basic"
,
},
{
node
:
api
.
Node
{
Spec
:
api
.
NodeSpec
{
Unschedulable
:
true
},
Status
:
api
.
NodeStatus
{
Conditions
:
[]
api
.
NodeCondition
{
{
Type
:
api
.
NodeReady
,
Status
:
api
.
ConditionTrue
},
},
},
},
expectAccept
:
false
,
name
:
"unschedulable"
,
},
}
pred
:=
getNodeConditionPredicate
()
for
_
,
test
:=
range
tests
{
accept
:=
pred
(
test
.
node
)
if
accept
!=
test
.
expectAccept
{
t
.
Errorf
(
"Test failed for %s, expected %v, saw %v"
,
test
.
name
,
test
.
expectAccept
,
accept
)
}
}
}
// TODO(a-robinson): Add tests for update/sync/delete.
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