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
472a66ae
Commit
472a66ae
authored
Aug 12, 2015
by
dingh
Committed by
dinghaiyang
Aug 12, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update comments.
Change limit to request in the comments for CheckPodsExceedingFreeResources()
parent
81fb0f95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
predicates.go
plugin/pkg/scheduler/algorithm/predicates/predicates.go
+2
-2
No files found.
plugin/pkg/scheduler/algorithm/predicates/predicates.go
View file @
472a66ae
...
@@ -127,12 +127,12 @@ func CheckPodsExceedingFreeResources(pods []*api.Pod, capacity api.ResourceList)
...
@@ -127,12 +127,12 @@ func CheckPodsExceedingFreeResources(pods []*api.Pod, capacity api.ResourceList)
fitsCPU
:=
totalMilliCPU
==
0
||
(
totalMilliCPU
-
milliCPURequested
)
>=
podRequest
.
milliCPU
fitsCPU
:=
totalMilliCPU
==
0
||
(
totalMilliCPU
-
milliCPURequested
)
>=
podRequest
.
milliCPU
fitsMemory
:=
totalMemory
==
0
||
(
totalMemory
-
memoryRequested
)
>=
podRequest
.
memory
fitsMemory
:=
totalMemory
==
0
||
(
totalMemory
-
memoryRequested
)
>=
podRequest
.
memory
if
!
fitsCPU
{
if
!
fitsCPU
{
// the pod doesn't fit due to CPU
limi
t
// the pod doesn't fit due to CPU
reques
t
notFittingCPU
=
append
(
notFittingCPU
,
pod
)
notFittingCPU
=
append
(
notFittingCPU
,
pod
)
continue
continue
}
}
if
!
fitsMemory
{
if
!
fitsMemory
{
// the pod doesn't fit due to Memory
limi
t
// the pod doesn't fit due to Memory
reques
t
notFittingMemory
=
append
(
notFittingMemory
,
pod
)
notFittingMemory
=
append
(
notFittingMemory
,
pod
)
continue
continue
}
}
...
...
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