Last active
May 3, 2016 21:09
-
-
Save dileeph/05da6f70ed47444e9005bdc2c72bc3e9 to your computer and use it in GitHub Desktop.
resource quota json for a kubernetes namespace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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