Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. apiVersion: "v1"
  2. kind: "LimitRange"
  3. metadata:
  4. name: "test-resource-limits"
  5. spec:
  6. limits:
  7. - type: "Pod"
  8. max:
  9. cpu: "2"
  10. memory: "1Gi"
  11. min:
  12. cpu: "200m"
  13. memory: "6Mi"
  14. - type: "Container"
  15. max:
  16. cpu: "2"
  17. memory: "1Gi"
  18. min:
  19. cpu: "100m"
  20. memory: "4Mi"
  21. default:
  22. cpu: "300m"
  23. memory: "200Mi"
  24. defaultRequest:
  25. cpu: "200m"
  26. memory: "100Mi"
  27. maxLimitRequestRatio:
  28. cpu: "10"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement