Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16918 from juanvallejo/jvallejo/add-limit-limitra…
…tio-describe-project Automatic merge from submit-queue. add Limit & Limit/Request columns Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1278683 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 - ``` cc @openshift/cli-review
- Loading branch information