Last active
February 5, 2020 11:25
-
-
Save justindav1s/145ea2aa9b18abb36bb581f0d7ed67e2 to your computer and use it in GitHub Desktop.
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: resource-quota | |
namespace: cicd | |
spec: | |
hard: | |
requests.cpu: '1' | |
requests.memory: 1Gi | |
limits.cpu: '2' | |
limits.memory: 2Gi | |
requests.storage: 100Gi | |
persistentvolumeclaims: '100' | |
mystorage.storage-class.kubernetes.io/requests.storage: 1Gi | |
mystorage.storage-class.kubernetes.io/persistentvolumeclaims: '1' | |
configmaps: '10' | |
persistentvolumeclaims: '4' | |
replicationcontrollers: '20' | |
secrets: '10' | |
services: '10' | |
services.loadbalancers: '2' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment