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
Is your feature request related to a problem? Please describe.
In Kubernetes, the command describe is typically a flattened output of a given resource where a get -o yaml fetches the entire resource definition in the API server. In the current case, the outputs of, example, kubectl describe cpol require-labels is almost identical to kubectl get cpol require-labels -o yaml. The describe command should produce more concise, condensed output which can be used to more easily understand the object.
Describe the solution you'd like
Consider providing a more condensed output for the describe of a resource which is far less verbose than printing the full API definition of said resource.
Additional context
For comparison, check out the difference between the format of a describe command and a get -o yaml command of the same Service resource.
Is your feature request related to a problem? Please describe.
In Kubernetes, the command
describe
is typically a flattened output of a given resource where aget -o yaml
fetches the entire resource definition in the API server. In the current case, the outputs of, example,kubectl describe cpol require-labels
is almost identical tokubectl get cpol require-labels -o yaml
. Thedescribe
command should produce more concise, condensed output which can be used to more easily understand the object.Describe
Get
Describe the solution you'd like
Consider providing a more condensed output for the
describe
of a resource which is far less verbose than printing the full API definition of said resource.Additional context
For comparison, check out the difference between the format of a
describe
command and aget -o yaml
command of the sameService
resource.Describe
Get
The text was updated successfully, but these errors were encountered: