mirror of https://github.com/k3s-io/k3s
Merge pull request #16716 from huangyuqi/add_res_types_kubctl_get
Auto commit by PR queue botpull/6/head
commit
4566e039bf
|
@ -184,9 +184,6 @@ $ kubectl get pods
|
|||
# List all pods in ps output format with more information (such as node name).
|
||||
$ kubectl get pods \-o wide
|
||||
|
||||
# List all pods in resource/name format (such as pod/nginx).
|
||||
$ kubectl get pods \-o name
|
||||
|
||||
# List a single replication controller with specified NAME in ps output format.
|
||||
$ kubectl get replicationcontroller web
|
||||
|
||||
|
|
|
@ -61,9 +61,6 @@ $ kubectl get pods
|
|||
# List all pods in ps output format with more information (such as node name).
|
||||
$ kubectl get pods -o wide
|
||||
|
||||
# List all pods in resource/name format (such as pod/nginx).
|
||||
$ kubectl get pods -o name
|
||||
|
||||
# List a single replication controller with specified NAME in ps output format.
|
||||
$ kubectl get replicationcontroller web
|
||||
|
||||
|
@ -132,7 +129,7 @@ $ kubectl get rc/web service/frontend pods/web-pod-13je7
|
|||
|
||||
* [kubectl](kubectl.md) - kubectl controls the Kubernetes cluster manager
|
||||
|
||||
###### Auto generated by spf13/cobra at 2015-09-22 12:53:42.288852192 +0000 UTC
|
||||
###### Auto generated by spf13/cobra on 4-Nov-2015
|
||||
|
||||
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
|
||||
[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/user-guide/kubectl/kubectl_get.md?pixel)]()
|
||||
|
|
|
@ -122,6 +122,9 @@ __custom_func() {
|
|||
* persistentvolumeclaims (aka 'pvc')
|
||||
* limitranges (aka 'limits')
|
||||
* resourcequotas (aka 'quota')
|
||||
* componentstatuses (aka 'cs')
|
||||
* endpoints (aka 'ep')
|
||||
* quota
|
||||
`
|
||||
)
|
||||
|
||||
|
|
|
@ -50,9 +50,6 @@ $ kubectl get pods
|
|||
# List all pods in ps output format with more information (such as node name).
|
||||
$ kubectl get pods -o wide
|
||||
|
||||
# List all pods in resource/name format (such as pod/nginx).
|
||||
$ kubectl get pods -o name
|
||||
|
||||
# List a single replication controller with specified NAME in ps output format.
|
||||
$ kubectl get replicationcontroller web
|
||||
|
||||
|
|
Loading…
Reference in New Issue