有什么建议我可以在哪里获取和安装 kubectl 手册页吗?一直询问 Google 很烦人。
我希望能够从命令行查看手册页,例如:
$ man kubectl pods
我显然知道互联网上的在线文档。
谢谢
答案1
CLIkubectl
是用 Golang 编写的,使用眼镜蛇根据子命令、标志等自动生成文档的功能。
因此,您可以使用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
答案2
我认为没有这方面的手册页。但 CLI 参考在这里,可以加为书签: