Created
March 10, 2017 16:33
-
-
Save Shemeikka/43a985e200b1abd8289c1ab7f5c48943 to your computer and use it in GitHub Desktop.
Kubernetes resource quota
This file contains 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: khightower-compute-resources | |
namespace: khightower | |
spec: | |
hard: | |
services: "5" | |
pods: "5" | |
requests.cpu: "2" | |
requests.memory: 1Gi | |
limits.cpu: "4" | |
limits.memory: 4Gi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment