Implement LimitRanger plugin

This commit is contained in:
derekwaynecarr 2015-01-22 20:31:31 -05:00
parent b8e1cdf625
commit f75501f340
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{
"id": "limits",
"kind": "LimitRange",
"apiVersion": "v1beta1",
"spec": {
"limits": [
{
"kind": "pods",
"max": {
"memory": "1073741824",
"cpu": "2",
},
"min": {
"memory": "1048576",
"cpu": "0.25"
}
},
{
"kind": "containers",
"max": {
"memory": "1073741824",
"cpu": "2",
},
"min": {
"memory": "1048576",
"cpu": "0.25"
}
},
],
}
}