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
ee06097c
Commit
ee06097c
authored
Apr 22, 2015
by
Vish Kannan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7003 from derekwaynecarr/enforce_unbounded
Reject unbounded cpu and memory pods if quota is restricting it
parents
d790cc14
75482cab
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
154 additions
and
0 deletions
+154
-0
resource_quota_controller.go
pkg/resourcequota/resource_quota_controller.go
+22
-0
resource_quota_controller_test.go
pkg/resourcequota/resource_quota_controller_test.go
+60
-0
admission.go
plugin/pkg/admission/resourcequota/admission.go
+6
-0
admission_test.go
plugin/pkg/admission/resourcequota/admission_test.go
+66
-0
No files found.
pkg/resourcequota/resource_quota_controller.go
View file @
ee06097c
...
...
@@ -240,6 +240,28 @@ func PodCPU(pod *api.Pod) *resource.Quantity {
return
resource
.
NewMilliQuantity
(
int64
(
val
),
resource
.
DecimalSI
)
}
// IsPodCPUUnbounded returns true if the cpu use is unbounded for any container in pod
func
IsPodCPUUnbounded
(
pod
*
api
.
Pod
)
bool
{
for
j
:=
range
pod
.
Spec
.
Containers
{
container
:=
pod
.
Spec
.
Containers
[
j
]
if
container
.
Resources
.
Limits
.
Cpu
()
.
MilliValue
()
==
int64
(
0
)
{
return
true
}
}
return
false
}
// IsPodMemoryUnbounded returns true if the memory use is unbounded for any container in pod
func
IsPodMemoryUnbounded
(
pod
*
api
.
Pod
)
bool
{
for
j
:=
range
pod
.
Spec
.
Containers
{
container
:=
pod
.
Spec
.
Containers
[
j
]
if
container
.
Resources
.
Limits
.
Memory
()
.
Value
()
==
int64
(
0
)
{
return
true
}
}
return
false
}
// PodMemory computes the memory usage of a pod
func
PodMemory
(
pod
*
api
.
Pod
)
*
resource
.
Quantity
{
val
:=
int64
(
0
)
...
...
pkg/resourcequota/resource_quota_controller_test.go
View file @
ee06097c
...
...
@@ -267,3 +267,63 @@ func TestSyncResourceQuotaNoChange(t *testing.T) {
t
.
Errorf
(
"SyncResourceQuota made an unexpected client action when state was not dirty: %v"
,
kubeClient
.
Actions
)
}
}
func
TestIsPodCPUUnbounded
(
t
*
testing
.
T
)
{
pod
:=
api
.
Pod
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"pod-running"
},
Status
:
api
.
PodStatus
{
Phase
:
api
.
PodRunning
},
Spec
:
api
.
PodSpec
{
Volumes
:
[]
api
.
Volume
{{
Name
:
"vol"
}},
Containers
:
[]
api
.
Container
{{
Name
:
"ctr"
,
Image
:
"image"
,
Resources
:
getResourceRequirements
(
"100m"
,
"0"
)}},
},
}
if
IsPodCPUUnbounded
(
&
pod
)
{
t
.
Errorf
(
"Expected false"
)
}
pod
=
api
.
Pod
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"pod-running"
},
Status
:
api
.
PodStatus
{
Phase
:
api
.
PodRunning
},
Spec
:
api
.
PodSpec
{
Volumes
:
[]
api
.
Volume
{{
Name
:
"vol"
}},
Containers
:
[]
api
.
Container
{{
Name
:
"ctr"
,
Image
:
"image"
,
Resources
:
getResourceRequirements
(
"0"
,
"0"
)}},
},
}
if
!
IsPodCPUUnbounded
(
&
pod
)
{
t
.
Errorf
(
"Expected true"
)
}
pod
.
Spec
.
Containers
[
0
]
.
Resources
=
api
.
ResourceRequirements
{}
if
!
IsPodCPUUnbounded
(
&
pod
)
{
t
.
Errorf
(
"Expected true"
)
}
}
func
TestIsPodMemoryUnbounded
(
t
*
testing
.
T
)
{
pod
:=
api
.
Pod
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"pod-running"
},
Status
:
api
.
PodStatus
{
Phase
:
api
.
PodRunning
},
Spec
:
api
.
PodSpec
{
Volumes
:
[]
api
.
Volume
{{
Name
:
"vol"
}},
Containers
:
[]
api
.
Container
{{
Name
:
"ctr"
,
Image
:
"image"
,
Resources
:
getResourceRequirements
(
"0"
,
"1Gi"
)}},
},
}
if
IsPodMemoryUnbounded
(
&
pod
)
{
t
.
Errorf
(
"Expected false"
)
}
pod
=
api
.
Pod
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"pod-running"
},
Status
:
api
.
PodStatus
{
Phase
:
api
.
PodRunning
},
Spec
:
api
.
PodSpec
{
Volumes
:
[]
api
.
Volume
{{
Name
:
"vol"
}},
Containers
:
[]
api
.
Container
{{
Name
:
"ctr"
,
Image
:
"image"
,
Resources
:
getResourceRequirements
(
"0"
,
"0"
)}},
},
}
if
!
IsPodMemoryUnbounded
(
&
pod
)
{
t
.
Errorf
(
"Expected true"
)
}
pod
.
Spec
.
Containers
[
0
]
.
Resources
=
api
.
ResourceRequirements
{}
if
!
IsPodMemoryUnbounded
(
&
pod
)
{
t
.
Errorf
(
"Expected true"
)
}
}
plugin/pkg/admission/resourcequota/admission.go
View file @
ee06097c
...
...
@@ -171,6 +171,9 @@ func IncrementUsage(a admission.Attributes, status *api.ResourceQuotaStatus, cli
hardMem
,
hardMemFound
:=
status
.
Hard
[
api
.
ResourceMemory
]
if
hardMemFound
{
if
set
[
api
.
ResourceMemory
]
&&
resourcequota
.
IsPodMemoryUnbounded
(
pod
)
{
return
false
,
fmt
.
Errorf
(
"Limited to %s memory, but pod has no specified memory limit"
,
hardMem
.
String
())
}
used
,
usedFound
:=
status
.
Used
[
api
.
ResourceMemory
]
if
!
usedFound
{
return
false
,
fmt
.
Errorf
(
"Quota usage stats are not yet known, unable to admit resource until an accurate count is completed."
)
...
...
@@ -184,6 +187,9 @@ func IncrementUsage(a admission.Attributes, status *api.ResourceQuotaStatus, cli
}
hardCPU
,
hardCPUFound
:=
status
.
Hard
[
api
.
ResourceCPU
]
if
hardCPUFound
{
if
set
[
api
.
ResourceCPU
]
&&
resourcequota
.
IsPodCPUUnbounded
(
pod
)
{
return
false
,
fmt
.
Errorf
(
"Limited to %s CPU, but pod has no specified cpu limit"
,
hardCPU
.
String
())
}
used
,
usedFound
:=
status
.
Used
[
api
.
ResourceCPU
]
if
!
usedFound
{
return
false
,
fmt
.
Errorf
(
"Quota usage stats are not yet known, unable to admit resource until an accurate count is completed."
)
...
...
plugin/pkg/admission/resourcequota/admission_test.go
View file @
ee06097c
...
...
@@ -195,6 +195,72 @@ func TestIncrementUsageCPU(t *testing.T) {
}
}
func
TestUnboundedCPU
(
t
*
testing
.
T
)
{
namespace
:=
"default"
client
:=
testclient
.
NewSimpleFake
(
&
api
.
PodList
{
Items
:
[]
api
.
Pod
{
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"123"
,
Namespace
:
namespace
},
Spec
:
api
.
PodSpec
{
Volumes
:
[]
api
.
Volume
{{
Name
:
"vol"
}},
Containers
:
[]
api
.
Container
{{
Name
:
"ctr"
,
Image
:
"image"
,
Resources
:
getResourceRequirements
(
"100m"
,
"1Gi"
)}},
},
},
},
})
status
:=
&
api
.
ResourceQuotaStatus
{
Hard
:
api
.
ResourceList
{},
Used
:
api
.
ResourceList
{},
}
r
:=
api
.
ResourceCPU
status
.
Hard
[
r
]
=
resource
.
MustParse
(
"200m"
)
status
.
Used
[
r
]
=
resource
.
MustParse
(
"100m"
)
newPod
:=
&
api
.
Pod
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"123"
,
Namespace
:
namespace
},
Spec
:
api
.
PodSpec
{
Volumes
:
[]
api
.
Volume
{{
Name
:
"vol"
}},
Containers
:
[]
api
.
Container
{{
Name
:
"ctr"
,
Image
:
"image"
,
Resources
:
getResourceRequirements
(
"0m"
,
"1Gi"
)}},
}}
_
,
err
:=
IncrementUsage
(
admission
.
NewAttributesRecord
(
newPod
,
"Pod"
,
namespace
,
"pods"
,
"CREATE"
),
status
,
client
)
if
err
==
nil
{
t
.
Errorf
(
"Expected CPU unbounded usage error"
)
}
}
func
TestUnboundedMemory
(
t
*
testing
.
T
)
{
namespace
:=
"default"
client
:=
testclient
.
NewSimpleFake
(
&
api
.
PodList
{
Items
:
[]
api
.
Pod
{
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"123"
,
Namespace
:
namespace
},
Spec
:
api
.
PodSpec
{
Volumes
:
[]
api
.
Volume
{{
Name
:
"vol"
}},
Containers
:
[]
api
.
Container
{{
Name
:
"ctr"
,
Image
:
"image"
,
Resources
:
getResourceRequirements
(
"100m"
,
"1Gi"
)}},
},
},
},
})
status
:=
&
api
.
ResourceQuotaStatus
{
Hard
:
api
.
ResourceList
{},
Used
:
api
.
ResourceList
{},
}
r
:=
api
.
ResourceMemory
status
.
Hard
[
r
]
=
resource
.
MustParse
(
"10Gi"
)
status
.
Used
[
r
]
=
resource
.
MustParse
(
"1Gi"
)
newPod
:=
&
api
.
Pod
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"123"
,
Namespace
:
namespace
},
Spec
:
api
.
PodSpec
{
Volumes
:
[]
api
.
Volume
{{
Name
:
"vol"
}},
Containers
:
[]
api
.
Container
{{
Name
:
"ctr"
,
Image
:
"image"
,
Resources
:
getResourceRequirements
(
"250m"
,
"0"
)}},
}}
_
,
err
:=
IncrementUsage
(
admission
.
NewAttributesRecord
(
newPod
,
"Pod"
,
namespace
,
"pods"
,
"CREATE"
),
status
,
client
)
if
err
==
nil
{
t
.
Errorf
(
"Expected memory unbounded usage error"
)
}
}
func
TestExceedUsageCPU
(
t
*
testing
.
T
)
{
namespace
:=
"default"
client
:=
testclient
.
NewSimpleFake
(
&
api
.
PodList
{
...
...
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