因此,您可以使用kubectl --help查看所有可用选项。此外,您可以深入研究特定的子命令选项(例如,kubectl describe --help等kubectl get --help)。
不仅如此,您还可以kubectl explain用来描述与每个支持的 API 资源相关的字段,这在编写模板时非常有用。例子:
# Get the documentation of the resource and its fields
kubectl explain pods
# Get the documentation of a specific field of a resource
kubectl explain pods.spec.containers
kubectl
CLI 是用 Golang 编写的,并使用Cobra功能根据子命令、标志等自动生成文档。因此,您可以使用
kubectl --help
查看所有可用选项。此外,您可以深入研究特定的子命令选项(例如,kubectl describe --help
等kubectl get --help
)。不仅如此,您还可以
kubectl explain
用来描述与每个支持的 API 资源相关的字段,这在编写模板时非常有用。例子:我不认为有一个手册页。但是 CLI 参考在这里,可以加书签:
https://kubernetes.io/docs/reference/kubectl/kubectl/