Implement LimitRanger plugin

This commit is contained in:
derekwaynecarr
2015-01-22 20:31:31 -05:00
parent 091cbe5fa2
commit 31a1145abd
4 changed files with 484 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"
}
},
],
}
}