mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-04 01:40:07 +00:00
Merge pull request #13453 from aveshagarwal/master-kubectl-get-fixes
Adds serviceaccounts to kubectl get/describe cli help and docs description.
This commit is contained in:
commit
58b01bee1c
@ -30,7 +30,7 @@ exists, it will output details for every resource that has a name prefixed with
|
|||||||
Possible resource types include (case insensitive): pods (po), services (svc),
|
Possible resource types include (case insensitive): pods (po), services (svc),
|
||||||
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
|
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
|
||||||
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
|
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
|
||||||
namespaces (ns) or secrets.
|
namespaces (ns), serviceaccounts or secrets.
|
||||||
|
|
||||||
|
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
|
@ -19,7 +19,7 @@ Display one or many resources.
|
|||||||
Possible resource types include (case insensitive): pods (po), services (svc),
|
Possible resource types include (case insensitive): pods (po), services (svc),
|
||||||
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
|
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
|
||||||
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
|
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
|
||||||
resourcequotas (quota), namespaces (ns), endpoints (ep) or secrets.
|
resourcequotas (quota), namespaces (ns), endpoints (ep), serviceaccounts or secrets.
|
||||||
|
|
||||||
.PP
|
.PP
|
||||||
By specifying the output as 'template' and providing a Go template as the value
|
By specifying the output as 'template' and providing a Go template as the value
|
||||||
|
@ -51,7 +51,7 @@ exists, it will output details for every resource that has a name prefixed with
|
|||||||
Possible resource types include (case insensitive): pods (po), services (svc),
|
Possible resource types include (case insensitive): pods (po), services (svc),
|
||||||
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
|
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
|
||||||
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
|
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
|
||||||
namespaces (ns) or secrets.
|
namespaces (ns), serviceaccounts or secrets.
|
||||||
|
|
||||||
```
|
```
|
||||||
kubectl describe (-f FILENAME | TYPE [NAME_PREFIX | -l label] | TYPE/NAME)
|
kubectl describe (-f FILENAME | TYPE [NAME_PREFIX | -l label] | TYPE/NAME)
|
||||||
|
@ -43,7 +43,7 @@ Display one or many resources.
|
|||||||
Possible resource types include (case insensitive): pods (po), services (svc),
|
Possible resource types include (case insensitive): pods (po), services (svc),
|
||||||
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
|
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
|
||||||
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
|
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
|
||||||
resourcequotas (quota), namespaces (ns), endpoints (ep) or secrets.
|
resourcequotas (quota), namespaces (ns), endpoints (ep), serviceaccounts or secrets.
|
||||||
|
|
||||||
By specifying the output as 'template' and providing a Go template as the value
|
By specifying the output as 'template' and providing a Go template as the value
|
||||||
of the --template flag, you can filter the attributes of the fetched resource(s).
|
of the --template flag, you can filter the attributes of the fetched resource(s).
|
||||||
|
@ -52,7 +52,7 @@ exists, it will output details for every resource that has a name prefixed with
|
|||||||
Possible resource types include (case insensitive): pods (po), services (svc),
|
Possible resource types include (case insensitive): pods (po), services (svc),
|
||||||
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
|
replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
|
||||||
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
|
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota),
|
||||||
namespaces (ns) or secrets.`
|
namespaces (ns), serviceaccounts or secrets.`
|
||||||
describe_example = `# Describe a node
|
describe_example = `# Describe a node
|
||||||
$ kubectl describe nodes kubernetes-minion-emt8.c.myproject.internal
|
$ kubectl describe nodes kubernetes-minion-emt8.c.myproject.internal
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ const (
|
|||||||
Possible resource types include (case insensitive): pods (po), services (svc),
|
Possible resource types include (case insensitive): pods (po), services (svc),
|
||||||
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
|
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
|
||||||
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
|
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
|
||||||
resourcequotas (quota), namespaces (ns), endpoints (ep) or secrets.
|
resourcequotas (quota), namespaces (ns), endpoints (ep), serviceaccounts or secrets.
|
||||||
|
|
||||||
By specifying the output as 'template' and providing a Go template as the value
|
By specifying the output as 'template' and providing a Go template as the value
|
||||||
of the --template flag, you can filter the attributes of the fetched resource(s).`
|
of the --template flag, you can filter the attributes of the fetched resource(s).`
|
||||||
|
Loading…
Reference in New Issue
Block a user