|
2 | 2 | title: "安装工具"
|
3 | 3 | weight: 10
|
4 | 4 | description: 在你的计算机上设置 Kubernetes 工具。
|
| 5 | +no_list: true |
5 | 6 | ---
|
| 7 | + |
| 8 | +<!-- |
| 9 | +title: "Install Tools" |
| 10 | +description: Set up Kubernetes tools on your computer. |
| 11 | +weight: 10 |
| 12 | +no_list: true |
| 13 | +--> |
| 14 | + |
| 15 | +<!-- |
| 16 | +## kubectl |
| 17 | +
|
| 18 | +The Kubernetes command-line tool, `kubectl`, allows you to run commands against |
| 19 | +Kubernetes clusters. You can use `kubectl` to deploy applications, inspect and |
| 20 | +manage cluster resources, and view logs. |
| 21 | +
|
| 22 | +See [Install and Set Up `kubectl`](/docs/tasks/tools/install-kubectl/) for |
| 23 | +information about how to download and install `kubectl` and set it up for |
| 24 | +accessing your cluster. |
| 25 | +--> |
| 26 | +## kubectl |
| 27 | + |
| 28 | +Kubernetes 命令行工具,`kubectl`,使得你可以对 Kubernetes 集群运行命令。 |
| 29 | +你可以使用 `kubectl` 来部署应用、监测和管理集群资源以及查看日志。 |
| 30 | + |
| 31 | +关于如何下载和安装 `kubectl` 并配置其访问你的集群,可参阅 |
| 32 | +[安装和配置 `kubectl`](/zh/docs/tasks/tools/install-kubectl/)。 |
| 33 | + |
| 34 | +<!-- |
| 35 | +a class="btn btn-primary" href="/docs/tasks/tools/install-kubectl/" role="button" aria-label="View kubectl Install and Set Up Guide">View kubectl Install and Set Up Guide</a> |
| 36 | +
|
| 37 | +You can also read the |
| 38 | +[`kubectl` reference documentation](/docs/reference/kubectl/). |
| 39 | +--> |
| 40 | +<a class="btn btn-primary" href="/zh/docs/tasks/tools/install-kubectl/" |
| 41 | + role="button" aria-label="查看 kubectl 安装和配置指南"> |
| 42 | +查看 kubectl 安装和配置指南 |
| 43 | +</a> |
| 44 | + |
| 45 | +你也可以阅读 [`kubectl` 参考文档](/zh/docs/reference/kubectl/). |
| 46 | + |
| 47 | +<!-- |
| 48 | +## minikube |
| 49 | +
|
| 50 | +[`minikube`](https://minikube.sigs.k8s.io/) is a tool that lets you run Kubernetes |
| 51 | +locally. `minikube` runs a single-node Kubernetes cluster on your personal |
| 52 | +computer (including Windows, macOS and Linux PCs) so that you can try out |
| 53 | +Kubernetes, or for daily development work. |
| 54 | +
|
| 55 | +You can follow the official |
| 56 | +[Get Started!](https://minikube.sigs.k8s.io/docs/start/) guide if your focus is |
| 57 | +on getting the tool installed. |
| 58 | +--> |
| 59 | +## minikube |
| 60 | + |
| 61 | +[`minikube`](https://minikube.sigs.k8s.io/) 是一个工具,能让你在本地运行 Kubernetes。 |
| 62 | +`minikube` 在你本地的个人计算机(包括 Windows、macOS 和 Linux PC)运行一个单节点的 |
| 63 | +Kubernetes 集群,以便你来尝试 Kubernetes 或者开展每天的开发工作。 |
| 64 | + |
| 65 | +如果你关注如何安装此工具,可以按官方的 |
| 66 | +[Get Started!](https://minikube.sigs.k8s.io/docs/start/)指南操作。 |
| 67 | + |
| 68 | +<!-- |
| 69 | +a class="btn btn-primary" href="https://minikube.sigs.k8s.io/docs/start/" role="button" aria-label="View minikube Get Started! Guide">View minikube Get Started! Guide</a> |
| 70 | +
|
| 71 | +Once you have `minikube` working, you can use it to |
| 72 | +[run a sample application](/docs/tutorials/hello-minikube/). |
| 73 | +--> |
| 74 | +<a class="btn btn-primary" href="https://minikube.sigs.k8s.io/docs/start/" |
| 75 | + role="button" aria-label="查看 minikube 快速入门指南"> |
| 76 | +查看 minikube 快速入门指南 |
| 77 | +</a> |
| 78 | + |
| 79 | +当你拥有了可工作的 `minikube` 时,就可以用它来 |
| 80 | +[运行示例应用](/zh/docs/tutorials/hello-minikube/)了。 |
| 81 | + |
| 82 | +<!-- |
| 83 | +## kind |
| 84 | +
|
| 85 | +Like `minikube`, [`kind`](https://kind.sigs.k8s.io/docs/) lets you run Kubernetes on |
| 86 | +your local computer. Unlike `minikube`, `kind` only works with a single container |
| 87 | +runtime: it requires that you have [Docker](https://docs.docker.com/get-docker/) |
| 88 | +installed and configured. |
| 89 | +
|
| 90 | +[Quick Start](https://kind.sigs.k8s.io/docs/user/quick-start/) shows you what |
| 91 | +you need to do to get up and running with `kind`. |
| 92 | +
|
| 93 | +<a class="btn btn-primary" href="https://kind.sigs.k8s.io/docs/user/quick-start/" role="button" aria-label="View kind Quick Start Guide">View kind Quick Start Guide</a> |
| 94 | +--> |
| 95 | +## kind |
| 96 | + |
| 97 | +与 `minikube` 类似,[`kind`](https://kind.sigs.k8s.io/docs/) 让你能够在本地计算机上 |
| 98 | +运行 Kubernetes。与`minikube` 不同的是,`kind` 只能使用一种容器运行时: |
| 99 | +它要求你安装并配置好 [Docker](https://docs.docker.com/get-docker/)。 |
| 100 | + |
| 101 | +[快速入门](https://kind.sigs.k8s.io/docs/user/quick-start/)页面提供了开始使用 |
| 102 | +`kind` 所需要完成的操作。 |
| 103 | + |
| 104 | +<a class="btn btn-primary" href="https://kind.sigs.k8s.io/docs/user/quick-start/" |
| 105 | + role="button" aria-label="查看 kind 的快速入门指南"> |
| 106 | +查看 kind 的快速入门指南 |
| 107 | +</a> |
| 108 | + |
0 commit comments