什么是部署的 kubernetes 缩写?
What's kubernetes abbreviation for deployments?
对于kubectl describe
我可以缩写一些类的资源,例如:
po/xxx -> pods/xxx
rs/xxx -> replicasets/xxx
在哪里可以找到完整列表?
我正在寻找部署的缩写。
要获取资源的完整列表,包括它们的 简称,请使用:
kubectl api-resources
例如部署的简称为 deploy
.
kubectl api-resources
的示例输出:
NAME SHORTNAMES APIVERSION NAMESPACED KIND
daemonsets ds apps/v1 true DaemonSet
deployments deploy apps/v1 true Deployment
replicasets rs apps/v1 true ReplicaSet
statefulsets sts apps/v1 true StatefulSet
...
对于kubectl describe
我可以缩写一些类的资源,例如:
po/xxx -> pods/xxx
rs/xxx -> replicasets/xxx
在哪里可以找到完整列表?
我正在寻找部署的缩写。
要获取资源的完整列表,包括它们的 简称,请使用:
kubectl api-resources
例如部署的简称为 deploy
.
kubectl api-resources
的示例输出:
NAME SHORTNAMES APIVERSION NAMESPACED KIND
daemonsets ds apps/v1 true DaemonSet
deployments deploy apps/v1 true Deployment
replicasets rs apps/v1 true ReplicaSet
statefulsets sts apps/v1 true StatefulSet
...