Commit c0f04f36 authored by Derek Carr's avatar Derek Carr

Merge pull request #7918 from caesarxuchao/resource-quota-example

merge the v1beta3 json file in the resource quota example
parents d80b4383 cf8426d8
{
"id": "quota",
"apiVersion": "v1beta3",
"kind": "ResourceQuota",
"apiVersion": "v1beta1",
"metadata": {
"name": "quota"
},
"spec": {
"hard": {
"memory": "1073741824",
"memory": "1Gi",
"cpu": "20",
"pods": "10",
"services": "5",
"replicationcontrollers":"20",
"resourcequotas":"1",
"secrets":"10",
"persistentvolumeclaims":"10"
"persistentvolumeclaims":"10"
}
}
}
{
"apiVersion": "v1beta3",
"kind": "ResourceQuota",
"metadata": {
"name": "quota"
},
"spec": {
"hard": {
"memory": "1Gi",
"cpu": "20",
"pods": "10",
"services": "5",
"replicationcontrollers":"20",
"resourcequotas":"1",
"secrets":"10",
"persistentvolumeclaims":"10"
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment