Add IBM Cloud CPU terminology (#9443)
* Modify Resource Types section in kubectl cheat sheet * Fix error in command syntax * Change header level * Add IBM Cloud terminology
This commit is contained in:
committed by
k8s-ci-robot
parent
d77b4f59b6
commit
559509f170
@@ -54,6 +54,7 @@ One cpu, in Kubernetes, is equivalent to:
|
|||||||
- 1 AWS vCPU
|
- 1 AWS vCPU
|
||||||
- 1 GCP Core
|
- 1 GCP Core
|
||||||
- 1 Azure vCore
|
- 1 Azure vCore
|
||||||
|
- 1 IBM vCPU
|
||||||
- 1 *Hyperthread* on a bare-metal Intel processor with Hyperthreading
|
- 1 *Hyperthread* on a bare-metal Intel processor with Hyperthreading
|
||||||
|
|
||||||
Fractional requests are allowed. A Container with
|
Fractional requests are allowed. A Container with
|
||||||
|
|||||||
@@ -239,49 +239,24 @@ $ kubectl cluster-info dump --output-directory=/path/to/cluster-state # Dump c
|
|||||||
$ kubectl taint nodes foo dedicated=special-user:NoSchedule
|
$ kubectl taint nodes foo dedicated=special-user:NoSchedule
|
||||||
```
|
```
|
||||||
|
|
||||||
## Resource types
|
### Resource types
|
||||||
|
|
||||||
The following table includes a list of all the supported resource types and their abbreviated aliases:
|
List all supported resource types along with their shortnames, [API group](/docs/concepts/overview/kubernetes-api/#api-groups), whether they are [namespaced](/docs/concepts/overview/working-with-objects/namespaces), and [Kind](/docs/concepts/overview/working-with-objects/kubernetes-objects):
|
||||||
|
|
||||||
Resource type | Abbreviated alias
|
```console
|
||||||
-------------------- | --------------------
|
$ kubectl api-resources
|
||||||
`all` |
|
```
|
||||||
`certificatesigningrequests` |`csr`
|
|
||||||
`clusterrolebindings` |
|
Other operations for exploring API resources:
|
||||||
`clusterroles` |
|
|
||||||
`componentstatuses` |`cs`
|
```console
|
||||||
`configmaps` |`cm`
|
$ kubectl api-resources --namespaced=true # All namespaced resources
|
||||||
`controllerrevisions` |
|
$ kubectl api-resources --namespaced=false # All non-namespaced resources
|
||||||
`cronjobs` |
|
$ kubectl api-resources -o name # All resources with simple output (just the resource name)
|
||||||
`customresourcedefinition` |`crd`, `crds`
|
$ kubectl api-resources -o wide # All resources with expanded (aka "wide") output
|
||||||
`daemonsets` |`ds`
|
$ kubectl api-resources --verbs=list,get # All resources that support the "list" and "get" request verbs
|
||||||
`deployments` |`deploy`
|
$ kubectl api-resources --api-group=extensions # All resources in the "extensions" API group
|
||||||
`endpoints` |`ep`
|
```
|
||||||
`events` |`ev`
|
|
||||||
`horizontalpodautoscalers` |`hpa`
|
|
||||||
`ingresses` |`ing`
|
|
||||||
`jobs` |
|
|
||||||
`limitranges` |`limits`
|
|
||||||
`namespaces` |`ns`
|
|
||||||
`networkpolicies` |`netpol`
|
|
||||||
`nodes` |`no`
|
|
||||||
`persistentvolumeclaims` |`pvc`
|
|
||||||
`persistentvolumes` |`pv`
|
|
||||||
`poddisruptionbudgets` |`pdb`
|
|
||||||
`podpreset` |
|
|
||||||
`pods` |`po`
|
|
||||||
`podsecuritypolicies` |`psp`
|
|
||||||
`podtemplates` |
|
|
||||||
`replicasets` |`rs`
|
|
||||||
`replicationcontrollers` |`rc`
|
|
||||||
`resourcequotas` |`quota`
|
|
||||||
`rolebindings` |
|
|
||||||
`roles` |
|
|
||||||
`secrets` |
|
|
||||||
`serviceaccount` |`sa`
|
|
||||||
`services` |`svc`
|
|
||||||
`statefulsets` |`sts`
|
|
||||||
`storageclasses` |`sc`
|
|
||||||
|
|
||||||
### Formatting output
|
### Formatting output
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user