• Kubernetes Submit Queue's avatar
    Merge pull request #64072 from CaoShuFeng/show_kind · 5fee0507
    Kubernetes Submit Queue authored
    Automatic merge from submit-queue (batch tested with PRs 64034, 64072, 64146, 64059, 64161). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.
    
    fix kubectl get --show-kind
    
    This pull request fix `kubectl get --show-kind`
    Before this change:
    ```json
    $ kubectl get pods --show-kind
    NAME                    READY     STATUS      RESTARTS   AGE
    pi-with-timeout-52sjs   0/1       Completed   0          1d
    pi-with-timeout-f5pb5   0/1       Completed   0          1d
    ```
    After this change:
    ```
    $ kubectl get pods --show-kind
    NAME                        READY     STATUS      RESTARTS   AGE
    pod/pi-with-timeout-52sjs   0/1       Completed   0          1d
    pod/pi-with-timeout-f5pb5   0/1       Completed   0          1d
    ```
    
    
    **What this PR does / why we need it**:
    
    **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*:
    Fixes #
    
    **Special notes for your reviewer**:
    /assign @soltysh 
    **Release note**:
    
    ```release-note
    NONE
    ```
    5fee0507
Name
Last commit
Last update
..
BUILD Loading commit data...
get.go Loading commit data...
get_flags.go Loading commit data...
get_test.go Loading commit data...
humanreadable_flags.go Loading commit data...
humanreadable_flags_test.go Loading commit data...