You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #16918 from juanvallejo/jvallejo/add-limit-limitratio-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
0 commit comments