Skip to content

Instantly share code, notes, and snippets.

@dileeph
Last active May 3, 2016 21:09
Show Gist options
  • Save dileeph/05da6f70ed47444e9005bdc2c72bc3e9 to your computer and use it in GitHub Desktop.
Save dileeph/05da6f70ed47444e9005bdc2c72bc3e9 to your computer and use it in GitHub Desktop.
resource quota json for a kubernetes namespace
{
"apiVersion": "v1",
"kind": "ResourceQuota",
"metadata": {
"name": "bs-quota"
},
"spec": {
"hard": {
"memory": "1Gi",
"cpu": "1",
"pods": "10",
"services": "5",
"replicationcontrollers":"20",
"resourcequotas":"1"
}
}
}
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment