Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds the "Limit" and "Limit/Request" columns seen when describing a LimitRange to the "describe" output of projects. **Before** ``` $ oc describe project myproject ... Resource limits: Name: limits Type Resource Min Max Default ---- -------- --- --- --- Pod cpu 200m 2 - Pod memory 6Mi 1Gi - Container cpu 100m 2 300m Container memory 4Mi 1Gi 200Mi ``` **After** ``` $ oc describe project myproject ... Resource limits: Name: limits Type Resource Min Max Default Limit Limit/Request ---- -------- --- --- --- ----- ------------- Pod cpu 200m 2 - - - Pod memory 6Mi 1Gi - - - Container cpu 100m 2 300m 300m 10 Container memory 4Mi 1Gi 200Mi 200Mi - ```
- Loading branch information